From fc5eedc7169b38e9131ed125aa3e7db630b87804 Mon Sep 17 00:00:00 2001 From: Arisotura Date: Mon, 15 Jun 2020 13:39:33 +0200 Subject: * take nwifi forward some * shut up CP15 printf's for Fx0 * fix bugs --- src/RTC.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/RTC.cpp') diff --git a/src/RTC.cpp b/src/RTC.cpp index 0d80b2c..fed63d5 100644 --- a/src/RTC.cpp +++ b/src/RTC.cpp @@ -106,7 +106,6 @@ u8 BCD(u8 val) void ByteIn(u8 val) { - //printf("RTC IN: %02X\n", val); if (InputPos == 0) { if ((val & 0xF0) == 0x60) -- cgit v1.2.3 From 3fde8411a7484cd88877deaee38328eb573f5513 Mon Sep 17 00:00:00 2001 From: Arisotura Date: Mon, 15 Jun 2020 13:40:54 +0200 Subject: fix ass-stupid RTC bug --- src/RTC.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/RTC.cpp') diff --git a/src/RTC.cpp b/src/RTC.cpp index fed63d5..ba51dff 100644 --- a/src/RTC.cpp +++ b/src/RTC.cpp @@ -174,7 +174,6 @@ void ByteIn(u8 val) case 0x70: Output[0] = FreeReg; break; } } - InputPos++; return; } @@ -220,8 +219,6 @@ void ByteIn(u8 val) if (InputPos == 1) FreeReg = val; break; } - - InputPos++; } -- cgit v1.2.3