mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-09 05:25:01 +00:00
Provides minor extra detail.
This commit is contained in:
@@ -465,7 +465,6 @@ class ConcreteMachine:
|
|||||||
case 0xc031:
|
case 0xc031:
|
||||||
// b7: 0 = use head 0; 1 = use head 1.
|
// b7: 0 = use head 0; 1 = use head 1.
|
||||||
// b6: 0 = use 5.25" disks; 1 = use 3.5".
|
// b6: 0 = use 5.25" disks; 1 = use 3.5".
|
||||||
printf("TODO: Disk interface register [%d]\n", is_read);
|
|
||||||
if(!is_read) {
|
if(!is_read) {
|
||||||
disk_select_ = *value;
|
disk_select_ = *value;
|
||||||
iwm_->set_select(*value & 0x80);
|
iwm_->set_select(*value & 0x80);
|
||||||
@@ -474,6 +473,8 @@ class ConcreteMachine:
|
|||||||
} else {
|
} else {
|
||||||
*value = disk_select_;
|
*value = disk_select_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
printf("TODO: Disk interface register [%d; %02x]\n", is_read, *value);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user