GBA SIO: Improve MULTI timing

This commit is contained in:
Vicki Pfau 2024-05-24 01:31:25 -07:00
parent 649be1b505
commit 8c0a28477b
1 changed files with 4 additions and 4 deletions

View File

@ -12,10 +12,10 @@
mLOG_DEFINE_CATEGORY(GBA_SIO, "GBA Serial I/O", "gba.sio");
const int GBASIOCyclesPerTransfer[4][MAX_GBAS] = {
{ 38326, 73003, 107680, 142356 },
{ 9582, 18251, 26920, 35589 },
{ 6388, 12167, 17947, 23726 },
{ 3194, 6075, 8973, 11863 }
{ 31976, 63427, 94884, 125829 },
{ 8378, 16241, 24104, 31457 },
{ 5750, 10998, 16241, 20972 },
{ 3140, 5755, 8376, 10486 }
};
static struct GBASIODriver* _lookupDriver(struct GBASIO* sio, enum GBASIOMode mode) {