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

Makes the Apple II an activity source.

This commit is contained in:
Thomas Harte
2018-05-10 22:17:13 -04:00
parent 9089bf6535
commit a43ca0db35
6 changed files with 33 additions and 4 deletions
+4
View File
@@ -236,3 +236,7 @@ uint8_t DiskII::trigger_address(int address, uint8_t value) {
return 0xff;
}
void DiskII::set_activity_observer(Activity::Observer *observer) {
drives_[0].set_activity_observer(observer, "Drive 1", true);
drives_[1].set_activity_observer(observer, "Drive 2", true);
}