summaryrefslogtreecommitdiff
path: root/z80_private.h
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2026-07-09 15:02:56 +0100
committerIan C <ianc@noddybox.co.uk>2026-07-09 15:02:56 +0100
commitd1ec0f82b5a432021161551e54440ad66425e657 (patch)
treedbac3570c19d6f3e1dcd984bac834457b4e1fb45 /z80_private.h
parent36e342fb5dbfdc339cfc86015cf0bd90bea44e8a (diff)
Fixed compile problem where FPEEKW and FPOKEW were undefinedHEADmaster
Diffstat (limited to 'z80_private.h')
-rw-r--r--z80_private.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/z80_private.h b/z80_private.h
index 86adaee..e3d721a 100644
--- a/z80_private.h
+++ b/z80_private.h
@@ -161,6 +161,9 @@ static inline Z80Word PEEKW(Z80Word addr)
#else
+Z80Word FPEEKW(Z80 *cpu, Z80Word addr);
+void FPOKEW(Z80 *cpu, Z80Word addr, Z80Word val);
+
#define PEEK(addr) (PRIV->mread(cpu,addr))
#define PEEKW(addr) FPEEKW(cpu,addr)