mirror of
https://github.com/holub/mame
synced 2025-04-29 11:30:28 +03:00
fix disassembly window (nw)
This commit is contained in:
parent
54bcc04b00
commit
a67bcb06ff
@ -624,9 +624,9 @@ void mips3_device::device_start()
|
|||||||
state_add( MIPS3_WIRED, "Wired", m_core->cpr[0][COP0_Wired]).formatstr("%08X");
|
state_add( MIPS3_WIRED, "Wired", m_core->cpr[0][COP0_Wired]).formatstr("%08X");
|
||||||
state_add( MIPS3_BADVADDR, "BadVAddr", m_core->cpr[0][COP0_BadVAddr]).formatstr("%08X");
|
state_add( MIPS3_BADVADDR, "BadVAddr", m_core->cpr[0][COP0_BadVAddr]).formatstr("%08X");
|
||||||
|
|
||||||
state_add( STATE_GENPC, "GENPC", m_core->pc).noshow();
|
state_add( STATE_GENPCBASE, "CURPC", m_core->pc).noshow();
|
||||||
state_add( STATE_GENSP, "GENSP", m_core->r[31]).noshow();
|
state_add( STATE_GENSP, "CURSP", m_core->r[31]).noshow();
|
||||||
state_add( STATE_GENFLAGS, "GENFLAGS", m_debugger_temp).formatstr("%1s").noshow();
|
state_add( STATE_GENFLAGS, "CURFLAGS", m_debugger_temp).formatstr("%1s").noshow();
|
||||||
|
|
||||||
m_icountptr = &m_core->icount;
|
m_icountptr = &m_core->icount;
|
||||||
}
|
}
|
||||||
|
@ -47,8 +47,8 @@ extern const device_type RM7000LE;
|
|||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
MIPS3_PC = 1,
|
MIPS3_PC = STATE_GENPC,
|
||||||
MIPS3_R0,
|
MIPS3_R0 = 1,
|
||||||
MIPS3_R1,
|
MIPS3_R1,
|
||||||
MIPS3_R2,
|
MIPS3_R2,
|
||||||
MIPS3_R3,
|
MIPS3_R3,
|
||||||
|
Loading…
Reference in New Issue
Block a user