mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-04 06:30:41 +00:00
Remove unneeded powerOn override from the 6809 processor.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
57928602d5
commit
1eb59279a8
@ -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; }
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user