mirror of
https://github.com/pound-emu/ballistic.git
synced 2026-06-17 04:16:48 -07:00
x86/assembler: fix incorrect log message
bal_x86_emit_or_r64_r64() logs `mov r%d, r%d` instead of `or r%d, r%d` Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
@@ -502,7 +502,7 @@ bal_x86_emit_or_r64_r64(bal_x86_assembler_t *assembler,
|
||||
}
|
||||
|
||||
BAL_LOG_DEBUG(
|
||||
&assembler->logger, "[+0x%04zx] mov r%d, r%d", assembler->offset, destination, source);
|
||||
&assembler->logger, "[+0x%04zx] or r%d, r%d", assembler->offset, destination, source);
|
||||
const uint8_t w = 1;
|
||||
|
||||
// WARNING: Destination is verified by is_valid_register() to fall within the safe enum range
|
||||
|
||||
Reference in New Issue
Block a user