1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-22 08:16:42 +00:00

Starts in the direction of audio support.

This commit is contained in:
Thomas Harte
2020-11-18 18:39:11 -05:00
parent c7ab3d4075
commit 98347cb1c3
4 changed files with 94 additions and 15 deletions
+1 -1
View File
@@ -389,7 +389,7 @@ void IWM::propose_shift(uint8_t bit) {
shift_register_ = uint8_t((shift_register_ << 1) | bit);
if(shift_register_ & 0x80) {
if(data_register_ & 0x80) LOG("Byte missed");
// if(data_register_ & 0x80) LOG("Byte missed");
data_register_ = shift_register_;
shift_register_ = 0;
}