mirror of
https://github.com/holub/mame
synced 2025-06-27 22:54:42 +03:00
sm510: fixed ATPL opcode (nw)
This commit is contained in:
parent
298e2ba13c
commit
17baaeff75
@ -116,7 +116,7 @@ void sm510_base_device::op_decb()
|
|||||||
void sm510_base_device::op_atpl()
|
void sm510_base_device::op_atpl()
|
||||||
{
|
{
|
||||||
// ATPL: load Pl(PC low bits) with ACC
|
// ATPL: load Pl(PC low bits) with ACC
|
||||||
m_pc = (m_pc & ~0xf) | m_acc;
|
m_pc = (m_prev_pc & ~0xf) | m_acc;
|
||||||
}
|
}
|
||||||
|
|
||||||
void sm510_base_device::op_rtn0()
|
void sm510_base_device::op_rtn0()
|
||||||
|
@ -570,7 +570,7 @@ MACHINE_CONFIG_END
|
|||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
TI-2550 III/TI-1265 (both have same chip)
|
TI-2550 III/TI-1265 (both have same chip)
|
||||||
* TMS1040 MCU label TMS1043NL ZA0352 (die label ?)
|
* TMS1040 MCU label TMS1043NL ZA0352 (die label 1040A, 1043A)
|
||||||
* 9-digit cyan VFD display
|
* 9-digit cyan VFD display
|
||||||
|
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
Loading…
Reference in New Issue
Block a user