1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-07-25 13:24:23 +00:00

Creates the through-path that will be necessary for RWTS acceleration.

This commit is contained in:
Thomas Harte
2018-06-09 12:51:53 -04:00
parent fb4bb21bf6
commit dde9b73a22
7 changed files with 42 additions and 6 deletions

View File

@@ -260,3 +260,7 @@ 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);
}
Storage::Disk::Drive &DiskII::get_drive(int index) {
return drives_[index];
}