From: Jim Blandy Date: Mon, 10 Sep 2001 23:54:16 +0000 (+0000) Subject: * rom68k-rom.c (init_rom68k_cmds): Set the flag indicating that X-Git-Tag: cygnus_cvs_20020108_pre~1393 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a5666cc9b854e40fd2174776d1d45be56a922c45;p=thirdparty%2Fbinutils-gdb.git * rom68k-rom.c (init_rom68k_cmds): Set the flag indicating that programs running on the board can produce output. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 11c851bdee5..d18555b4652 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-09-10 Jim Blandy + + * rom68k-rom.c (init_rom68k_cmds): Set the flag indicating that + programs running on the board can produce output. + 2001-09-10 Jason Molenda (jmolenda@apple.com) * NEWS: "ANS/ISO C" -> "ISO C". diff --git a/gdb/rom68k-rom.c b/gdb/rom68k-rom.c index 0b1c9ed0157..ec49f5d7177 100644 --- a/gdb/rom68k-rom.c +++ b/gdb/rom68k-rom.c @@ -177,7 +177,7 @@ static struct monitor_ops rom68k_cmds; static void init_rom68k_cmds (void) { - rom68k_cmds.flags = 0; + rom68k_cmds.flags = MO_PRINT_PROGRAM_OUTPUT; rom68k_cmds.init = rom68k_inits; /* monitor init string */ rom68k_cmds.cont = "go\r"; rom68k_cmds.step = "st\r";