diff --git a/bochs/CHANGES b/bochs/CHANGES index 2f097a45c..5bf93c0a9 100644 --- a/bochs/CHANGES +++ b/bochs/CHANGES @@ -34,7 +34,8 @@ Changes after 2.4.2: [2908481] USB Printer by Ben Lunt - these S.F. bugs were closed/fixed - [2374455] shtudown/reset type 05 should reinit the PICs + [2938398] gdbstub compile error with x86_64 enabled + [2374455] shutdown/reset type 05 should reinit the PICs [1921294] extended memory less than 1M wrong size [1947249] BX_USE_EBDA_TABLES and MP table placement [1933859] BX_USE_EBDA_TABLES and memory overlapping diff --git a/bochs/gdbstub.cc b/bochs/gdbstub.cc index 19e597652..24fb06b5e 100644 --- a/bochs/gdbstub.cc +++ b/bochs/gdbstub.cc @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////// -// $Id: gdbstub.cc,v 1.41 2010-01-02 22:36:20 sshwarts Exp $ +// $Id: gdbstub.cc,v 1.42 2010-02-14 15:17:14 sshwarts Exp $ ///////////////////////////////////////////////////////////////////////// // // Copyright (C) 2002-2006 The Bochs Project Team @@ -693,6 +693,7 @@ static void debug_loop(void) } case 'g': + { #if BX_SUPPORT_X86_64 == 0 WriteHostDWordToLittleEndian(registers + 0, EAX); WriteHostDWordToLittleEndian(registers + 1, ECX); @@ -764,6 +765,7 @@ static void debug_loop(void) #endif put_reply(obuf); break; + } case '?': sprintf(obuf, "S%02x", SIGTRAP);