Skip to content

Commit

Permalink
- TEMP disable cancelling bus error iff during prefetch; seems to mak…
Browse files Browse the repository at this point in the history
…e many things work

- what we actually want is a way of knowing its a prefetch memory_r()
  • Loading branch information
Adam committed Jan 19, 2025
1 parent 3db10a0 commit a48623e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devices/cpu/m68000/m68kcpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ inline u32 m68ki_read_imm_16()
m_pref_data = m68ki_ic_readimm16(m_pc);
m_pref_addr = m_mmu_tmp_buserror_occurred ? ~0 : m_pc;
// ignore bus error on prefetch
m_mmu_tmp_buserror_occurred = 0;
//AB m_mmu_tmp_buserror_occurred = 0;
}

return result;
Expand Down

0 comments on commit a48623e

Please sign in to comment.