mirror of
https://github.com/holub/mame
synced 2025-05-28 16:43:04 +03:00
fatalerror if the SH4 mmu is turned on.
looks like quite a few NaomiGDs need it.. Ikaruga, Border Down, Senko etc. etc.
This commit is contained in:
parent
6a0e1ddf09
commit
663bc8a8cd
@ -641,6 +641,12 @@ WRITE32_HANDLER( sh4_internal_w )
|
|||||||
|
|
||||||
switch( offset )
|
switch( offset )
|
||||||
{
|
{
|
||||||
|
case MMUCR: // MMU Control
|
||||||
|
if (data & 1)
|
||||||
|
fatalerror("SH4: MMUCR write enables MMU\n");
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
// Memory refresh
|
// Memory refresh
|
||||||
case RTCSR:
|
case RTCSR:
|
||||||
sh4->m[RTCSR] &= 255;
|
sh4->m[RTCSR] &= 255;
|
||||||
|
Loading…
Reference in New Issue
Block a user