From dc6803a5b6d814c400fcadc9268ad3c9d5db92f5 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Sun, 26 Aug 2018 17:27:50 +0100 Subject: [PATCH] Whoops: powerOn should always be public (6809) Signed-off-by: Adrian Conlon --- MC6809/inc/mc6809.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MC6809/inc/mc6809.h b/MC6809/inc/mc6809.h index cf05b22..6030726 100644 --- a/MC6809/inc/mc6809.h +++ b/MC6809/inc/mc6809.h @@ -60,6 +60,8 @@ namespace EightBit { virtual int execute(uint8_t opcode) final; virtual int step() final; + virtual void powerOn() final; + register16_t& D() { return m_d; } uint8_t& A() { return D().high; } uint8_t& B() { return D().low; } @@ -79,8 +81,6 @@ namespace EightBit { PinLevel& BS() { return m_bsLine; } // Out protected: - virtual void powerOn() final; - // Default push/pop handlers virtual void push(uint8_t value) final { pushS(value); }