aboutsummaryrefslogtreecommitdiff
path: root/SPI.cpp
diff options
context:
space:
mode:
authorStapleButter <thetotalworm@gmail.com>2016-12-05 23:17:03 +0100
committerStapleButter <thetotalworm@gmail.com>2016-12-05 23:17:03 +0100
commitc8a0058ebc7440493ed8483b8630140e6811acfd (patch)
tree23c59cc6ab9c16577a195ca5582c01d6fc738b2c /SPI.cpp
parent8c8c78cf8347bde1e1853782f1c9b5316c7c339d (diff)
implementation of VRAM and other misc crap
Diffstat (limited to 'SPI.cpp')
-rw-r--r--SPI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/SPI.cpp b/SPI.cpp
index 562cf09..f8f1b6d 100644
--- a/SPI.cpp
+++ b/SPI.cpp
@@ -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
{