diff options
author | Ian C <ianc@noddybox.co.uk> | 2021-08-03 21:43:06 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2021-08-03 21:43:06 +0000 |
commit | 0d08766ccc80cacfe0690cb8a1ea8f13038e404b (patch) | |
tree | 15eb862285cf96fef26b8fffb31dc60cd233a51c /include/spec.h | |
parent | b7e8b634595445325d10f8fcddcb7d6cdaa8a922 (diff) |
Sped up Z80 emulation
Diffstat (limited to 'include/spec.h')
-rw-r--r-- | include/spec.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/spec.h b/include/spec.h index 85fb5e7..8171a4f 100644 --- a/include/spec.h +++ b/include/spec.h @@ -67,13 +67,9 @@ void SPECReconfigure(void); /* Interfaces for the Z80 */ -Z80Byte SPECReadMem(Z80 *z80, Z80Word addr); -void SPECWriteMem(Z80 *z80, Z80Word addr, Z80Byte val); Z80Byte SPECReadPort(Z80 *z80, Z80Word port); void SPECWritePort(Z80 *z80, Z80Word port, Z80Byte val); -#define SPECReadDisassem SPECReadMem - /* Interface for snap */ void SPECWriteMemSNAP(Z80Word addr, Z80Byte val); |