diff options
author | Nadia Holmquist Pedersen <nadia@nhp.sh> | 2020-07-27 16:06:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-27 16:06:53 +0200 |
commit | 40a9f41be8ec484728862eb065b9b6985909db33 (patch) | |
tree | a037a722e60dc06a8de6990ce9da0c50f2d7015f /src/RTC.cpp | |
parent | 5c08207f359479fdd16fa8517f9d2a5e8fe52c63 (diff) | |
parent | dff14ca80ada883870131c7ff17d85866254ccc0 (diff) |
Merge branch 'master' into fix/aarch64-ci
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++; } |