From d1ec0f82b5a432021161551e54440ad66425e657 Mon Sep 17 00:00:00 2001 From: Ian C Date: Thu, 9 Jul 2026 15:02:56 +0100 Subject: Fixed compile problem where FPEEKW and FPOKEW were undefined --- z80_private.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'z80_private.h') 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) -- cgit v1.3