From d32fd189ee578fb0f61725f263ebf3a9f906334f Mon Sep 17 00:00:00 2001 From: hap Date: Tue, 27 Dec 2022 14:55:55 +0100 Subject: cpu/nec: remove logerror on HLT opcode --- src/devices/cpu/nec/nec80inst.hxx | 2 +- src/devices/cpu/nec/necinstr.hxx | 2 +- 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); -- cgit v1.2.3