mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-03-06 06:30:14 +00:00
Whoops: powerOn should always be public (6809)
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
ef5e325b6d
commit
dc6803a5b6
@ -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); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user