diff options
Diffstat (limited to 'src/RTC.cpp')
| -rw-r--r-- | src/RTC.cpp | 4 | 
1 files changed, 0 insertions, 4 deletions
| diff --git a/src/RTC.cpp b/src/RTC.cpp index 0d80b2c..ba51dff 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) @@ -175,7 +174,6 @@ void ByteIn(u8 val)              case 0x70: Output[0] = FreeReg; break;              }          } -        InputPos++;          return;      } @@ -221,8 +219,6 @@ void ByteIn(u8 val)          if (InputPos == 1) FreeReg = val;          break;      } - -    InputPos++;  } |