sm510: fixed ATPL opcode (nw)

This commit is contained in:
hap 2017-04-19 01:33:06 +02:00
parent 298e2ba13c
commit 17baaeff75
2 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ void sm510_base_device::op_decb()
void sm510_base_device::op_atpl()
{
// 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()

View File

@ -570,7 +570,7 @@ MACHINE_CONFIG_END
/***************************************************************************
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
***************************************************************************/