* rom68k-rom.c (init_rom68k_cmds): Set the flag indicating that

programs running on the board can produce output.
This commit is contained in:
Jim Blandy 2001-09-10 23:54:16 +00:00
parent 6d6b80e5eb
commit a5666cc9b8
2 changed files with 6 additions and 1 deletions

View 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".

View 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";