From e09d42911741410d6d042a549b1acb789019c8dd Mon Sep 17 00:00:00 2001 From: instinc Date: Wed, 26 Sep 2001 03:07:32 +0000 Subject: [PATCH] added the output of a little information string to help the user understand why it returned to the prompt. --- bochs/iodev/iodebug.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bochs/iodev/iodebug.cc b/bochs/iodev/iodebug.cc index fd278e138..1fc5ace71 100644 --- a/bochs/iodev/iodebug.cc +++ b/bochs/iodev/iodebug.cc @@ -148,6 +148,7 @@ void bx_iodebug_c::write( Bit32u addr, Bit32u dvalue, unsigned int io_len ) #if BX_DEBUGGER case( 0x8AE0 ): + fprintf( stdout, "request return to dbg prompt received, 0x8AE0 command (iodebug)\n"); bx_guard.interrupt_requested=1; break; #endif @@ -185,7 +186,7 @@ void bx_iodebug_c::mem_write( BX_CPU_C *cpu, Bit32u addr, unsigned len, void *da { area--; #if BX_DEBUGGER - fprintf( stdout, "%s @ eip: %8X wrote at monitored memory location %8X\n", cpu->name, cpu->eip, addr); + fprintf( stdout, "%s @ eip: %08X wrote at monitored memory location %8X\n", cpu->name, cpu->eip, addr); bx_guard.interrupt_requested=1; #else fprintf( stderr,