1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Corrects the all-RAM Z80 to declare that it needs the wait line to be implemented.

This commit is contained in:
Thomas Harte 2017-08-26 23:18:11 -04:00
parent e34d4ce903
commit fab6908129

View File

@ -96,7 +96,7 @@ class ConcreteAllRAMProcessor: public AllRAMProcessor, public BusHandler {
}
private:
CPU::Z80::Processor<ConcreteAllRAMProcessor, false> z80_;
CPU::Z80::Processor<ConcreteAllRAMProcessor, false, true> z80_;
};
}