1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 02:17:08 +00:00

Entrusted further status to drives; also adjusted them to report read only if diskless, which I now believe to be correct.

This commit is contained in:
Thomas Harte
2017-08-13 11:50:49 -04:00
parent 6d2e969e7d
commit eec42aa7ae
3 changed files with 4 additions and 5 deletions
+1 -2
View File
@@ -42,8 +42,7 @@ void Drive::set_head(unsigned int head) {
bool Drive::get_is_read_only() {
if(disk_) return disk_->get_is_read_only();
if(track_) return true;
return false;
return true;
}
bool Drive::get_is_ready() {