@@ -901,7 +901,7 @@ void m68000_musashi_device::execute_run()
901
901
902
902
try
903
903
{
904
- if (!m_instruction_restart )
904
+ if (!m_can_instruction_restart )
905
905
{
906
906
m_run_mode = RUN_MODE_NORMAL;
907
907
/* Read an instruction and call its handler */
@@ -1038,7 +1038,7 @@ void m68000_musashi_device::init_cpu_common(void)
1038
1038
m_pmmu_enabled = false ;
1039
1039
m_hmmu_enabled = 0 ;
1040
1040
m_emmu_enabled = false ;
1041
- m_instruction_restart = false ;
1041
+ m_can_instruction_restart = false ;
1042
1042
1043
1043
/* The first call to this function initializes the opcode handler jump table */
1044
1044
if (!emulation_initialized)
@@ -1073,7 +1073,7 @@ void m68000_musashi_device::init_cpu_common(void)
1073
1073
save_item (NAME (m_pmmu_enabled));
1074
1074
save_item (NAME (m_hmmu_enabled));
1075
1075
save_item (NAME (m_emmu_enabled));
1076
- save_item (NAME (m_instruction_restart ));
1076
+ save_item (NAME (m_can_instruction_restart ));
1077
1077
save_item (NAME (m_restart_instruction));
1078
1078
1079
1079
save_item (NAME (m_mmu_crp_aptr));
@@ -1112,7 +1112,7 @@ void m68000_musashi_device::device_reset()
1112
1112
m_pmmu_enabled = false ;
1113
1113
m_hmmu_enabled = 0 ;
1114
1114
m_emmu_enabled = false ;
1115
- m_instruction_restart = false ;
1115
+ m_can_instruction_restart = false ;
1116
1116
1117
1117
m_mmu_tc = 0 ;
1118
1118
m_mmu_tt0 = 0 ;
@@ -1316,7 +1316,7 @@ void m68000_musashi_device::set_hmmu_enable(int enable)
1316
1316
void m68000_musashi_device::set_emmu_enable (bool enable)
1317
1317
{
1318
1318
m_emmu_enabled = enable;
1319
- m_instruction_restart = m_pmmu_enabled || m_emmu_enabled;
1319
+ m_can_instruction_restart = m_pmmu_enabled || m_emmu_enabled;
1320
1320
}
1321
1321
1322
1322
void m68000_musashi_device::set_fpu_enable (bool enable)
@@ -1688,7 +1688,7 @@ void m68000_musashi_device::init32hmmu(address_space &space, address_space &ospa
1688
1688
// do not call set_input_line(M68K_LINE_BUSERROR) when using rerun flag
1689
1689
void m68000_musashi_device::set_buserror_details (u32 fault_addr, u8 rw, u8 fc, bool rerun)
1690
1690
{
1691
- if (m_instruction_restart && rerun) m_mmu_tmp_buserror_occurred = true ; // hack for external MMU
1691
+ if (m_can_instruction_restart && rerun) m_mmu_tmp_buserror_occurred = true ; // hack for external MMU
1692
1692
1693
1693
// save values for 68000 specific bus error
1694
1694
m_aerr_address = fault_addr;
@@ -2337,7 +2337,7 @@ void m68000_musashi_device::clear_all()
2337
2337
m_pmmu_enabled= false ;
2338
2338
m_hmmu_enabled= 0 ;
2339
2339
m_emmu_enabled= false ;
2340
- m_instruction_restart = false ;
2340
+ m_can_instruction_restart = false ;
2341
2341
m_has_fpu= 0 ;
2342
2342
m_fpu_just_reset= 0 ;
2343
2343
0 commit comments