1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

1 = disable, 0 = enable.

This commit is contained in:
Thomas Harte 2023-01-20 23:08:41 -05:00
parent 9c57bfd58d
commit c77e7c268f

View File

@ -727,7 +727,7 @@ void Base<personality>::write_register(uint8_t value) {
break;
case 17:
Storage<personality>::increment_indirect_register_ = low_write_ & 0x80;
Storage<personality>::increment_indirect_register_ = !(low_write_ & 0x80);
Storage<personality>::indirect_register_ = low_write_ & 0x3f;
break;