From: Philippe Mathieu-Daudé Date: Mon, 30 Mar 2020 09:30:27 +0000 (+0200) Subject: target/avr/cpu: Fix $PC displayed address X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2e34e622c2cbda6828bbb395b6bdd4e0240b8217;p=qemu.git target/avr/cpu: Fix $PC displayed address $PC is 16-bit wide. Other registers display addresses on a byte granularity. To have a coherent ouput, display $PC using byte granularity too. Reviewed-by: Thomas Huth Reviewed-by: Alex Bennée Reviewed-by: Richard Henderson Signed-off-by: Philippe Mathieu-Daudé Message-Id: <20200707070021.10031-3-f4bug@amsat.org> --- diff --git a/target/avr/cpu.c b/target/avr/cpu.c index 0cfc5f2e4b..5d9c4ad5bf 100644 --- a/target/avr/cpu.c +++ b/target/avr/cpu.c @@ -151,7 +151,7 @@ static void avr_cpu_dump_state(CPUState *cs, FILE *f, int flags) int i; qemu_fprintf(f, "\n"); - qemu_fprintf(f, "PC: %06x\n", env->pc_w); + qemu_fprintf(f, "PC: %06x\n", env->pc_w * 2); /* PC points to words */ qemu_fprintf(f, "SP: %04x\n", env->sp); qemu_fprintf(f, "rampD: %02x\n", env->rampD >> 16); qemu_fprintf(f, "rampX: %02x\n", env->rampX >> 16);