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

Adds the necessary routine for all machines to be able to respond to get_scan_status.

They all just as the CRT, as all are currently based on the CRT. Which doesn't currently know the total clock rate it would need to in order properly to scale the answer to the question. Further thought coming.
This commit is contained in:
Thomas Harte
2020-01-20 21:45:10 -05:00
parent e74f37d6ed
commit d97a073d1b
37 changed files with 151 additions and 1 deletions

View File

@@ -177,6 +177,10 @@ class ConcreteMachine:
vdp_->set_scan_target(scan_target);
}
Outputs::Display::ScanStatus get_scan_status() const final {
return vdp_->get_scan_status();
}
void set_display_type(Outputs::Display::DisplayType display_type) override {
vdp_->set_display_type(display_type);
}