diff options
Diffstat (limited to 'src/emu/cpu')
| -rw-r--r-- | src/emu/cpu/h83002/h8ops.h | 6 | ||||
| -rw-r--r-- | src/emu/cpu/h83002/h8speriph.c | 2 | ||||
| -rw-r--r-- | src/emu/cpu/v30mz/v30mz.c | 8 | ||||
| -rw-r--r-- | src/emu/cpu/v810/v810.c | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/src/emu/cpu/h83002/h8ops.h b/src/emu/cpu/h83002/h8ops.h index d436c09f7de..707d6abdb93 100644 --- a/src/emu/cpu/h83002/h8ops.h +++ b/src/emu/cpu/h83002/h8ops.h @@ -1,5 +1,5 @@ /* - + H8/3xx: Unknown opcode (PC=1c966) 10f - not a valid H8 or H8S opcode, either bad dump or banked ROM maygayep.c ep_cfallc @@ -13,8 +13,8 @@ H8/3xx: Unknown opcode (PC=8f91) aeb - ADD.L ERs, ERd maygayep.c ep_hogmnc H8/3xx: Unknown opcode (PC=20000) 6b6e - MOV.B @ERs, Rd -maygayep.c ep_wordf - +maygayep.c ep_wordf + */ static UINT32 udata32, address24; diff --git a/src/emu/cpu/h83002/h8speriph.c b/src/emu/cpu/h83002/h8speriph.c index e4120ffd15a..516aa01bc21 100644 --- a/src/emu/cpu/h83002/h8speriph.c +++ b/src/emu/cpu/h83002/h8speriph.c @@ -1591,7 +1591,7 @@ UINT8 h8s_onchip_reg_read_8_ddr(h83xx_state *h8, int offset) { int port = (offset - H8S_IO_P1DR); data = h8->drs[port] & h8->ddrs[port]; - data |= (h8->io->read_byte(H8_PORT_1 + port) & (h8->ddrs[port] ^ 0xff)); + data |= (h8->io->read_byte(H8_PORT_1 + port) & (h8->ddrs[port] ^ 0xff)); } break; diff --git a/src/emu/cpu/v30mz/v30mz.c b/src/emu/cpu/v30mz/v30mz.c index 4484a465d24..7ee243d0ff4 100644 --- a/src/emu/cpu/v30mz/v30mz.c +++ b/src/emu/cpu/v30mz/v30mz.c @@ -155,7 +155,7 @@ void v30mz_cpu_device::device_start() save_item(NAME(m_seg_prefix_next)); // Register state for debugger -// state_add( NEC_PC, "PC", m_PC ).callimport().callexport().formatstr("%04X"); +// state_add( NEC_PC, "PC", m_PC ).callimport().callexport().formatstr("%04X"); state_add( NEC_IP, "IP", m_ip ).callimport().callexport().formatstr("%04X"); state_add( NEC_SP, "SP", m_regs.w[SP] ).callimport().callexport().formatstr("%04X"); state_add( NEC_AW, "AW", m_regs.w[AW] ).callimport().callexport().formatstr("%04X"); @@ -1369,7 +1369,7 @@ void v30mz_cpu_device::execute_run() DEF_r8b(); ADDB(); RegByte(m_dst); - CLKM(1,2); + CLKM(1,2); break; case 0x03: // i_add_r16w @@ -2781,7 +2781,7 @@ void v30mz_cpu_device::execute_run() ANDW(); CLK(1); break; - + case 0xaa: // i_stosb i_stosb(); break; @@ -3295,7 +3295,7 @@ void v30mz_cpu_device::execute_run() m_sregs[CS] = tmp1; m_ip = tmp; - CLK(7); + CLK(7); } break; diff --git a/src/emu/cpu/v810/v810.c b/src/emu/cpu/v810/v810.c index 5ae880effeb..a848c365163 100644 --- a/src/emu/cpu/v810/v810.c +++ b/src/emu/cpu/v810/v810.c @@ -993,7 +993,7 @@ static UINT32 opBSU(v810_state *cpustate,UINT32 op) UINT32 dsttmp,tmp; UINT8 srctmp; -// printf("BDST %08x BSRC %08x SIZE %08x DST %08x SRC %08x\n",cpustate->R26,cpustate->R27,cpustate->R28,cpustate->R29,cpustate->R30); +// printf("BDST %08x BSRC %08x SIZE %08x DST %08x SRC %08x\n",cpustate->R26,cpustate->R27,cpustate->R28,cpustate->R29,cpustate->R30); dstbit = cpustate->R26; srcbit = cpustate->R27; |
