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

Adds a further logging hint.

This commit is contained in:
Thomas Harte 2021-08-06 23:16:06 -04:00
parent 8be053fd35
commit 98bd6fc240

View File

@ -206,6 +206,10 @@ struct MOS6526Storage {
template <bool is_counter_2> void set_control(uint8_t v) {
control = v;
if(v&2) {
printf("UNIMPLEMENTED: PB strobe\n");
}
}
template <bool is_counter_2> bool advance(bool chained_input, bool cnt_state, bool cnt_edge) {