diff options
Diffstat (limited to 'src/emu/cpu/h83002/h8ops.h')
| -rw-r--r-- | src/emu/cpu/h83002/h8ops.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/h83002/h8ops.h b/src/emu/cpu/h83002/h8ops.h index 20ac80d87c0..6112f3e72a4 100644 --- a/src/emu/cpu/h83002/h8ops.h +++ b/src/emu/cpu/h83002/h8ops.h @@ -1908,12 +1908,12 @@ static void h8_group6(h83xx_state *h8, UINT16 opcode) h8_bset8(h8, (udata16 >> 4) & 0x7, udata8); h8_mem_write8(address24, udata8); } - else if ((udata16 & 0xff00) == 0x6300) + else if ((udata16 & 0xff00) == 0x6300) { h8_btst8(h8, h8_getreg8(h8, (udata16 >> 4) & 0xf), udata8); h8_mem_write8(address24, udata8); } - else if ((udata16 & 0xff0f) == 0x6000) + else if ((udata16 & 0xff0f) == 0x6000) { h8_bset8(h8, h8_getreg8(h8, (udata16 >> 4) & 0xf), udata8); h8_mem_write8(address24, udata8); |
