u-boot/drivers/bios_emulator/x86emu
Yuri Zaporozhets ae12873de7 bios_emulator: fix incorrect printing of address in "jump near immediate"
In the x86emuOp_jump_call_near_IMM() function the target address is
printed incorrectly when jumping backwards. For example instead of
"jmp 0xe8bc" the string "jmp ffffe8bc" is printed. That's because
of the following macro:

    DECODE_PRINTF2("%04x\n", ip);

while it should be

    DECODE_PRINTF2("%04x\n", (u16)ip);

Signed-off-by: Yuri Zaporozhets <yuriz@qrv-systems.net>
2024-12-15 11:39:23 -06:00
..
debug.c bios_emulator: add missing includes to debug.c 2024-11-16 20:54:16 -06:00
decode.c
ops.c bios_emulator: fix incorrect printing of address in "jump near immediate" 2024-12-15 11:39:23 -06:00
ops2.c bios_emulator: fix garbled printing of disassembled SET* instructions 2024-12-15 11:39:18 -06:00
prim_ops.c
sys.c