mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
disassembly window fixes (nw)
This commit is contained in:
parent
48ac8f42a5
commit
ca6f939ebc
@ -416,6 +416,7 @@ void alpha8201_cpu_device::device_start()
|
||||
state_add( ALPHA8201_R5, "R5", m_R[5] ).callimport().callexport().formatstr("%02X");
|
||||
state_add( ALPHA8201_R6, "R6", m_R[6] ).callimport().callexport().formatstr("%02X");
|
||||
state_add( ALPHA8201_R7, "R7", m_R[7] ).callimport().callexport().formatstr("%02X");
|
||||
state_add(STATE_GENPCBASE, "PC", m_PREVPC).noshow();
|
||||
|
||||
save_item(NAME(m_RAM));
|
||||
save_item(NAME(m_PREVPC));
|
||||
|
@ -776,6 +776,7 @@ void apexc_cpu_device::device_start()
|
||||
state_add( APEXC_STATE, "CPU state", m_running ).mask(0x01);
|
||||
state_add( APEXC_PC, "PC", m_pc ).callimport().callexport().formatstr("%03X");
|
||||
state_add( APEXC_ML_FULL, "ML_FULL", m_ml_full ).callimport().callexport().noshow();
|
||||
state_add(STATE_GENPCBASE, "CURPC", m_pc).noshow();
|
||||
|
||||
m_icountptr = &m_icount;
|
||||
}
|
||||
|
@ -556,7 +556,7 @@ void i80186_cpu_device::device_start()
|
||||
state_add( I8086_VECTOR, "V", m_int_vector).callimport().callexport().formatstr("%02X");
|
||||
|
||||
state_add(STATE_GENPC, "GENPC", m_pc).formatstr("%05X");
|
||||
state_add(STATE_GENPC, "CURPC", m_pc).formatstr("%05X");
|
||||
state_add(STATE_GENPCBASE, "CURPC", m_pc).formatstr("%05X");
|
||||
|
||||
// register for savestates
|
||||
save_item(NAME(m_timer[0].control));
|
||||
|
@ -73,7 +73,7 @@ void pdp8_device::device_start()
|
||||
|
||||
// register our state for the debugger
|
||||
state_add(STATE_GENPC, "GENPC", m_pc).noshow();
|
||||
state_add(STATE_CURPC, "CURPC", m_pc).noshow();
|
||||
state_add(STATE_GENPCBASE, "CURPC", m_pc).noshow();
|
||||
state_add(STATE_GENFLAGS, "GENFLAGS", m_l).callimport().callexport().formatstr("%1s").noshow();
|
||||
state_add(PDP8_PC, "PC", m_pc).mask(0xfff);
|
||||
state_add(PDP8_AC, "AC", m_ac).mask(0xfff);
|
||||
|
@ -760,7 +760,7 @@ void adsp21062_device::device_start()
|
||||
state_add( SHARC_B15, "B15", m_core->dag2.b[7]).formatstr("%08X");
|
||||
|
||||
state_add( STATE_GENPC, "GENPC", m_core->pc).noshow();
|
||||
state_add( STATE_GENPC, "CURPC", m_core->pc).noshow();
|
||||
state_add( STATE_GENPCBASE, "CURPC", m_core->pc).noshow();
|
||||
|
||||
m_icountptr = &m_core->icount;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user