fix disassembly window (nw)

This commit is contained in:
smf- 2016-10-18 15:14:46 +01:00
parent 54bcc04b00
commit a67bcb06ff
2 changed files with 5 additions and 5 deletions

View File

@ -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_BADVADDR, "BadVAddr", m_core->cpr[0][COP0_BadVAddr]).formatstr("%08X");
state_add( STATE_GENPC, "GENPC", m_core->pc).noshow();
state_add( STATE_GENSP, "GENSP", m_core->r[31]).noshow();
state_add( STATE_GENFLAGS, "GENFLAGS", m_debugger_temp).formatstr("%1s").noshow();
state_add( STATE_GENPCBASE, "CURPC", m_core->pc).noshow();
state_add( STATE_GENSP, "CURSP", m_core->r[31]).noshow();
state_add( STATE_GENFLAGS, "CURFLAGS", m_debugger_temp).formatstr("%1s").noshow();
m_icountptr = &m_core->icount;
}

View File

@ -47,8 +47,8 @@ extern const device_type RM7000LE;
enum
{
MIPS3_PC = 1,
MIPS3_R0,
MIPS3_PC = STATE_GENPC,
MIPS3_R0 = 1,
MIPS3_R1,
MIPS3_R2,
MIPS3_R3,