From 1eb59279a8ad3163f56007905bdf44f75dd2d086 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Fri, 24 Aug 2018 10:54:16 +0100 Subject: [PATCH] Remove unneeded powerOn override from the 6809 processor. Signed-off-by: Adrian Conlon --- MC6809/inc/mc6809.h | 1 - MC6809/src/mc6809.cpp | 4 ---- 2 files changed, 5 deletions(-) diff --git a/MC6809/inc/mc6809.h b/MC6809/inc/mc6809.h index 1175fb3..05e373d 100644 --- a/MC6809/inc/mc6809.h +++ b/MC6809/inc/mc6809.h @@ -57,7 +57,6 @@ 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; } diff --git a/MC6809/src/mc6809.cpp b/MC6809/src/mc6809.cpp index e2b805d..bf4a9e0 100644 --- a/MC6809/src/mc6809.cpp +++ b/MC6809/src/mc6809.cpp @@ -7,10 +7,6 @@ EightBit::mc6809::mc6809(Bus& bus) : BigEndianProcessor(bus) {} -void EightBit::mc6809::powerOn() { - Processor::powerOn(); -} - int EightBit::mc6809::step() { resetCycles(); auto returned = 0;