summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/nec
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-12-27 14:55:55 +0100
committer hap <happppp@users.noreply.github.com>2022-12-27 14:56:09 +0100
commitd32fd189ee578fb0f61725f263ebf3a9f906334f (patch)
treef18dd0c49e7fe0b6a824768957936fed2e851335 /src/devices/cpu/nec
parent8cc8e66fb877214e94824059c089ffd049a04495 (diff)
cpu/nec: remove logerror on HLT opcode
Diffstat (limited to 'src/devices/cpu/nec')
-rw-r--r--src/devices/cpu/nec/nec80inst.hxx2
-rw-r--r--src/devices/cpu/nec/necinstr.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/nec/nec80inst.hxx b/src/devices/cpu/nec/nec80inst.hxx
index c4d2eef22b9..8bcf95f3acd 100644
--- a/src/devices/cpu/nec/nec80inst.hxx
+++ b/src/devices/cpu/nec/nec80inst.hxx
@@ -115,7 +115,7 @@ OP80( 0x72, i_movmd ) { PutMemB(DS0, Wreg(BW), Breg(DH)); CLK(1); }
OP80( 0x73, i_movme ) { PutMemB(DS0, Wreg(BW), Breg(DL)); CLK(1); }
OP80( 0x74, i_movmh ) { PutMemB(DS0, Wreg(BW), Breg(BH)); CLK(1); }
OP80( 0x75, i_movml ) { PutMemB(DS0, Wreg(BW), Breg(BL)); CLK(1); }
-OP80( 0x76, i_hlt ) { logerror("%06x: HALT\n",PC()); m_halted=1; m_icount=0; }
+OP80( 0x76, i_hlt ) { m_halted=1; m_icount=0; }
OP80( 0x77, i_movma ) { PutMemB(DS0, Wreg(BW), Breg(AL)); CLK(1); }
OP80( 0x78, i_movab ) { Breg(AL) = Breg(CH); CLK(1); }
OP80( 0x79, i_movac ) { Breg(AL) = Breg(CL); CLK(1); }
diff --git a/src/devices/cpu/nec/necinstr.hxx b/src/devices/cpu/nec/necinstr.hxx
index 1d003609b6c..43c00cec6d9 100644
--- a/src/devices/cpu/nec/necinstr.hxx
+++ b/src/devices/cpu/nec/necinstr.hxx
@@ -655,7 +655,7 @@ OP( 0xf3, i_repe ) { uint32_t next = fetchop(); uint16_t c = Wreg(CW);
}
m_seg_prefix=false;
}
-OP( 0xf4, i_hlt ) { logerror("%06x: HALT\n",PC()); m_halted=1; m_icount=0; }
+OP( 0xf4, i_hlt ) { m_halted=1; m_icount=0; }
OP( 0xf5, i_cmc ) { m_CarryVal = !CF; CLK(2); }
OP( 0xf6, i_f6pre ) { uint32_t tmp; uint32_t uresult,uresult2; int32_t result,result2;
GetModRM; tmp = GetRMByte(ModRM);