diff options
-rw-r--r-- | bus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -313,7 +313,7 @@ void m68k_write_memory_16(const unsigned int address_a, const unsigned int value void m68k_write_memory_32(const unsigned int address_a, const unsigned int value) { const uint32_t address = MASK_24(address_a); - const bool successful = memory_write(BITNESS_16, address, value); + const bool successful = memory_write(BITNESS_32, address, value); if (!successful) { report_error("Attempted to write 0x%08x (u32) to address %08x", value&0xff, address); m68k_breakpoint_callback(); |