1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Further reduce printf footprint.

This commit is contained in:
Thomas Harte
2024-02-15 13:41:35 -05:00
parent b4a3b23571
commit 093a029b8c
6 changed files with 5 additions and 12 deletions
-4
View File
@@ -55,10 +55,6 @@ uint8_t IWM::read(int address) {
logger.info().append("Invalid read\n");
return 0xff;
// "Read all 1s".
// printf("Reading all 1s\n");
// return 0xff;
case 0:
case ENABLE: { /* Read data register. Zeroing afterwards is a guess. */
const auto result = data_register_;