From c5ed16e619843a7aadc2129a9197539e3fa9d127 Mon Sep 17 00:00:00 2001 From: Nathaniel Walizer Date: Fri, 17 Jan 2025 11:16:32 -0800 Subject: [PATCH] Minor GCC warning fixes --- e6502.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/e6502.c b/e6502.c index dc917ab..c4f8009 100644 --- a/e6502.c +++ b/e6502.c @@ -63,23 +63,12 @@ static inline uint8_t e6502_adr_r8(e6502_Core* core, return e6502_r8(core, adr); } -static inline uint8_t e6502_adr_r16(e6502_Core* core, - e6502_Address adr) { - return e6502_r16(core, adr); -} - static inline void e6502_adr_w8(e6502_Core* core, e6502_Address adr, uint8_t val) { e6502_w8(core, adr, val); } -static inline void e6502_adr_w16(e6502_Core* core, - e6502_Address adr, - uint16_t val) { - e6502_w16(core, adr,val); -} - #endif // !E6502_POLL_MEM