mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 06:10:03 -06:00
* take nwifi forward some
* shut up CP15 printf's for Fx0 * fix bugs
This commit is contained in:
@ -597,7 +597,10 @@ void ARMv5::CP15Write(u32 id, u32 val)
|
||||
return;
|
||||
}
|
||||
|
||||
if ((id&0xF00)!=0x700)
|
||||
if ((id & 0xF00) == 0xF00) // test/debug shit?
|
||||
return;
|
||||
|
||||
if ((id & 0xF00) != 0x700)
|
||||
printf("unknown CP15 write op %03X %08X\n", id, val);
|
||||
}
|
||||
|
||||
@ -691,6 +694,9 @@ u32 ARMv5::CP15Read(u32 id)
|
||||
return ITCMSetting;
|
||||
}
|
||||
|
||||
if ((id & 0xF00) == 0xF00) // test/debug shit?
|
||||
return 0;
|
||||
|
||||
printf("unknown CP15 read op %03X\n", id);
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user