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

Avoid type-in-function-name, Z80 edition.

This commit is contained in:
Thomas Harte
2023-05-10 18:42:19 -05:00
parent ea50d5bda7
commit 10cd2a36cf
8 changed files with 42 additions and 42 deletions
+2 -2
View File
@@ -83,11 +83,11 @@ class ConcreteAllRAMProcessor: public AllRAMProcessor, public BusHandler {
}
uint16_t get_value_of_register(Register r) final {
return z80_.get_value_of_register(r);
return z80_.value_of(r);
}
void set_value_of_register(Register r, uint16_t value) final {
z80_.set_value_of_register(r, value);
z80_.set_value_of(r, value);
}
bool get_halt_line() final {