1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-20 10:17:05 +00:00

Corrected timestamp reporting by the all-RAM Z80.

This commit is contained in:
Thomas Harte
2017-07-26 19:47:39 -04:00
parent 81a3899381
commit 847e49ccdf
3 changed files with 7 additions and 1 deletions
+4
View File
@@ -94,6 +94,10 @@ class ConcreteAllRAMProcessor: public AllRAMProcessor, public Processor<Concrete
void set_wait_line(bool value) {
CPU::Z80::Processor<ConcreteAllRAMProcessor>::set_wait_line(value);
}
uint32_t get_timestamp() {
return timestamp_ >> 1;
}
};
}