mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
(MESS) Fixed MT005469
This commit is contained in:
parent
331e399aa8
commit
4455358c8a
1 changed files with 2 additions and 1 deletions
|
@ -514,7 +514,8 @@ void arm7_cpu_device::device_start()
|
|||
|
||||
m_icountptr = &m_icount;
|
||||
|
||||
state_add(STATE_GENPC, "curpc", m_pc).callexport().formatstr("%08X");
|
||||
state_add( ARM7_PC, "PC", m_pc).callexport().formatstr("%08X");
|
||||
state_add(STATE_GENPC, "GENPC", m_pc).callexport().noshow();
|
||||
/* registers shared by all operating modes */
|
||||
state_add( ARM7_R0, "R0", m_r[ 0]).formatstr("%08X");
|
||||
state_add( ARM7_R1, "R1", m_r[ 1]).formatstr("%08X");
|
||||
|
|
Loading…
Reference in a new issue