mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-22 22:01:06 -06:00
* scheduler revamp, simpler design
* fix dumb bug of the year: ARM LDR opcodes would accidentally read twice, which fucked with things like the IPC FIFO.
This commit is contained in:
2
SPI.cpp
2
SPI.cpp
@ -323,7 +323,7 @@ void WriteData(u8 val)
|
||||
{
|
||||
case 0x0000: SPI_Powerman::Write(val, CNT&(1<<11)); break;
|
||||
case 0x0100: SPI_Firmware::Write(val, CNT&(1<<11)); break;
|
||||
default: break;//printf("SPI to unknown device %04X %02X\n", CNT, val); break;
|
||||
default: printf("SPI to unknown device %04X %02X\n", CNT, val); break;
|
||||
}
|
||||
|
||||
if (CNT & (1<<14))
|
||||
|
Reference in New Issue
Block a user