qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Fix a typo in 'P' packet processing for M68K.
@ 2010-01-14 17:08 Kazu Hirata
  2010-01-14 19:06 ` Aurelien Jarno
  0 siblings, 1 reply; 4+ messages in thread
From: Kazu Hirata @ 2010-01-14 17:08 UTC (permalink / raw)
  To: qemu-devel; +Cc: aurelien

Hi,

Attached is a patch to fix a typo in 'P' packet processing for M68K.

Without this patch, QEMU fails to honor GDB's P packets from GDB
(writing to registers) for the address registers (A0 - A7).

The problem is because of an obvious typo.  Notice that the second
"if" condition is meant to be n < 16 in:

  if (n < 8) {
    :
  } else if (n < 8) {

Signed-off-by: Kazu Hirata <kazu@codesourcery.com>
---
 gdbstub.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gdbstub.c b/gdbstub.c
index 6180171..80477be 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -1014,7 +1014,7 @@ static int cpu_gdb_write_register(CPUState *env, uint8_t *mem_buf, int n)
     if (n < 8) {
         /* D0-D7 */
         env->dregs[n] = tmp;
-    } else if (n < 8) {
+    } else if (n < 16) {
         /* A0-A7 */
         env->aregs[n - 8] = tmp;
     } else {
-- 
1.6.2.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread
[parent not found: <20091224003324.A6E1F6F6226F@daisy.codesourcery.com>]

end of thread, other threads:[~2010-01-14 19:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-14 17:08 [Qemu-devel] [PATCH] Fix a typo in 'P' packet processing for M68K Kazu Hirata
2010-01-14 19:06 ` Aurelien Jarno
     [not found] <20091224003324.A6E1F6F6226F@daisy.codesourcery.com>
2010-01-14 14:39 ` [Qemu-devel] [patch] " Aurelien Jarno
2010-01-14 17:05   ` Kazu Hirata

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).