1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-24 12:30:17 +00:00

Wired up actually to run.

This commit is contained in:
Thomas Harte 2017-06-04 18:37:13 -04:00
parent 096551ab3e
commit 73654d51dd

View File

@ -91,6 +91,7 @@ std::shared_ptr<Outputs::Speaker> Machine::get_speaker() {
}
void Machine::run_for_cycles(int number_of_cycles) {
CPU::Z80::Processor<Machine>::run_for_cycles(number_of_cycles);
}
void Machine::configure_as_target(const StaticAnalyser::Target &target) {