GBA SIO: Update timings based on observation

This commit is contained in:
Jeffrey Pfau 2015-02-24 00:58:14 -08:00
parent 29e118b512
commit bb05764cd5
1 changed files with 4 additions and 4 deletions

View File

@ -8,10 +8,10 @@
#include "gba/io.h" #include "gba/io.h"
const int GBASIOCyclesPerTransfer[4][MAX_GBAS] = { const int GBASIOCyclesPerTransfer[4][MAX_GBAS] = {
{ 31457, 62914, 94371, 125829 }, { 38326, 73003, 107680, 142356 },
{ 7864, 15728, 23592, 31457 }, { 9582, 18251, 26920, 35589 },
{ 5242, 10485, 15728, 20971 }, { 6388, 12167, 17947, 23726 },
{ 2621, 5242, 7864, 10485 } { 3194, 6075, 8973, 11863 }
}; };
static struct GBASIODriver* _lookupDriver(struct GBASIO* sio, enum GBASIOMode mode) { static struct GBASIODriver* _lookupDriver(struct GBASIO* sio, enum GBASIOMode mode) {