diff options
author | Arisotura <thetotalworm@gmail.com> | 2019-07-03 12:37:34 +0200 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2019-07-03 12:37:34 +0200 |
commit | c5e14074c3b999d09b8a8612cfa7f011423e83ab (patch) | |
tree | d88f81be8081b7c250d65729131a62cdafbfc827 /src/DSi_I2C.cpp | |
parent | 5062ed543a881af2b1c4a7629d90812afeef945c (diff) |
* add SCFG_EXT
* quick hack to detect cartridges
Diffstat (limited to 'src/DSi_I2C.cpp')
-rw-r--r-- | src/DSi_I2C.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DSi_I2C.cpp b/src/DSi_I2C.cpp index 845dd9d..e88858b 100644 --- a/src/DSi_I2C.cpp +++ b/src/DSi_I2C.cpp @@ -72,7 +72,7 @@ void Reset() void Start() { - printf("BPTWL: start\n"); + //printf("BPTWL: start\n"); } u8 Read(bool last) @@ -83,7 +83,7 @@ u8 Read(bool last) return 0; } - printf("BPTWL: read %02X -> %02X\n", CurPos, Registers[CurPos]); + //printf("BPTWL: read %02X -> %02X\n", CurPos, Registers[CurPos]); return Registers[CurPos++]; } @@ -98,7 +98,7 @@ void Write(u8 val, bool last) if (CurPos == -1) { CurPos = val; - printf("BPTWL: reg=%02X\n", val); + //printf("BPTWL: reg=%02X\n", val); return; } @@ -113,7 +113,7 @@ void Write(u8 val, bool last) Registers[CurPos] = val; } - printf("BPTWL: write %02X -> %02X\n", CurPos, val); + //printf("BPTWL: write %02X -> %02X\n", CurPos, val); CurPos++; // CHECKME } |