diff options
author | 2011-06-28 14:23:18 +0000 | |
---|---|---|
committer | 2011-06-28 14:23:18 +0000 | |
commit | a23c194ed5de7cedbb45434768db7b46565baec7 (patch) | |
tree | 97915bcd553aa5fbc19254b39c93bd51990d6eeb /src/emu/cpu/sh4/sh4comn.c | |
parent | b26860dafbe08edb6de4db914f3095f8fa433546 (diff) |
Port from MESS, nw
Diffstat (limited to 'src/emu/cpu/sh4/sh4comn.c')
-rw-r--r-- | src/emu/cpu/sh4/sh4comn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/sh4/sh4comn.c b/src/emu/cpu/sh4/sh4comn.c index a4b261283cf..88e57e43612 100644 --- a/src/emu/cpu/sh4/sh4comn.c +++ b/src/emu/cpu/sh4/sh4comn.c @@ -633,7 +633,7 @@ WRITE32_HANDLER( sh4_internal_w ) UINT32 old = sh4->m[offset]; COMBINE_DATA(sh4->m+offset); -// printf("sh4_internal_w: Write %08x (%x), %08x @ %08x\n", 0xfe000000+((offset & 0x3fc0) << 11)+((offset & 0x3f) << 2), offset, data, mem_mask); +// printf("sh4_internal_w: Write %08x (%x), %08x @ %08x\n", 0xfe000000+((offset & 0x3fc0) << 11)+((offset & 0x3f) << 2), offset, data, mem_mask); switch( offset ) { @@ -945,7 +945,7 @@ READ32_HANDLER( sh4_internal_r ) UINT32 addr = (offset << 2) + 0xfe000000; offset = ((addr & 0xfc) >> 2) | ((addr & 0x1fe0000) >> 11); -// printf("sh4_internal_r: Read %08x (%x) @ %08x\n", 0xfe000000+((offset & 0x3fc0) << 11)+((offset & 0x3f) << 2), offset, mem_mask); +// printf("sh4_internal_r: Read %08x (%x) @ %08x\n", 0xfe000000+((offset & 0x3fc0) << 11)+((offset & 0x3f) << 2), offset, mem_mask); switch( offset ) { |