diff options
author | StapleButter <thetotalworm@gmail.com> | 2016-12-05 23:17:03 +0100 |
---|---|---|
committer | StapleButter <thetotalworm@gmail.com> | 2016-12-05 23:17:03 +0100 |
commit | c8a0058ebc7440493ed8483b8630140e6811acfd (patch) | |
tree | 23c59cc6ab9c16577a195ca5582c01d6fc738b2c /SPI.cpp | |
parent | 8c8c78cf8347bde1e1853782f1c9b5316c7c339d (diff) |
implementation of VRAM and other misc crap
Diffstat (limited to 'SPI.cpp')
-rw-r--r-- | SPI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -79,7 +79,7 @@ void Write(u8 val, u32 hold) Data = 0; DataPos = 1; Addr = 0; - printf("firmware SPI command %02X\n", CurCmd); + //printf("firmware SPI command %02X\n", CurCmd); return; } @@ -93,7 +93,7 @@ void Write(u8 val, u32 hold) Addr |= val; Data = 0; - if (DataPos == 3) printf("firmware SPI read %08X\n", Addr); + //if (DataPos == 3) printf("firmware SPI read %08X\n", Addr); } else { |