From 48959cc4153cd3158896fcc735ff7ff64a940884 Mon Sep 17 00:00:00 2001 From: Stephen Crane Date: Thu, 6 Jun 2019 09:19:55 +0100 Subject: [PATCH] fix compiler warning --- r6502.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r6502.h b/r6502.h index 60e103b..887b364 100644 --- a/r6502.h +++ b/r6502.h @@ -170,7 +170,7 @@ private: inline void bit_z() { _bit(_mem[_z()]); } inline void and_z() { _and(_mem[_z()]); } inline void rol_z() { _rol(_z()); } - inline void plp(); + void plp(); inline void and_() { _and(_mem[PC++]); } inline void rol() { A=__rol(A); } inline void bit_a() { _bit(_mem[_a()]); }