m68000: Reinstate registration of SR for debug expressions

This commit is contained in:
AJR 2017-11-02 18:44:51 -04:00
parent 6571e6731e
commit 8d2b0f2201

View File

@ -1714,6 +1714,7 @@ void m68000_base_device::define_state(void)
state_add(M68K_USP, "USP", iotemp).callimport().callexport();
if (cpu_type & MASK_020_OR_LATER)
state_add(M68K_MSP, "MSP", iotemp).callimport().callexport();
state_add(M68K_SR, "SR", iotemp).noshow().callimport().callexport();
for (int regnum = 0; regnum < 8; regnum++) {
state_add(M68K_D0 + regnum, string_format("D%d", regnum).c_str(), dar[regnum]);