* rom68k-rom.c (init_rom68k_cmds): Set the flag indicating that
authorJim Blandy <jimb@codesourcery.com>
Mon, 10 Sep 2001 23:54:16 +0000 (23:54 +0000)
committerJim Blandy <jimb@codesourcery.com>
Mon, 10 Sep 2001 23:54:16 +0000 (23:54 +0000)
programs running on the board can produce output.

gdb/ChangeLog
gdb/rom68k-rom.c

index 11c851b..d18555b 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-10  Jim Blandy  <jimb@redhat.com>
+
+       * 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".
index 0b1c9ed..ec49f5d 100644 (file)
@@ -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";