mirror of
https://github.com/holub/mame
synced 2025-07-06 10:29:38 +03:00
cpu/nec: remove logerror on HLT opcode
This commit is contained in:
parent
8cc8e66fb8
commit
d32fd189ee
@ -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); }
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user