bios_emulator: fix garbled printing of disassembled SET* instructions
authorYuri Zaporozhets <yuriz@qrv-systems.net>
Tue, 26 Nov 2024 23:29:53 +0000 (00:29 +0100)
committerTom Rini <trini@konsulko.com>
Sun, 15 Dec 2024 17:39:18 +0000 (11:39 -0600)
commit82a59b45d3fc720831eaacd5b76c796c00912832
tree2c5d491bf2a70433caf200c46459098fd1d5e0ef
parent15c1b2f974508c3d7a107b0bd8b43d69c9ae5305
bios_emulator: fix garbled printing of disassembled SET* instructions

When DEBUG_DECODE_F is enabled in bios_emulator, the printing of
SET{O,NO,B,NB,Z,NZ,BE,NBE,S,NS,P,TP,L,NL,LE,NLE} instructions
is not followed by newline and is, therefore, immediately followed
by the printed address of a new instruction. This garbles the output
and makes it very difficult to read.

This patch adds missing DECODE_PRINTF("\n") calls to print newlines.

Signed-off-by: Yuri Zaporozhets <yuriz@qrv-systems.net>
drivers/bios_emulator/x86emu/ops2.c