diff --git a/M6502/inc/mos6502.h b/M6502/inc/mos6502.h index 3824688..8f27661 100644 --- a/M6502/inc/mos6502.h +++ b/M6502/inc/mos6502.h @@ -7,11 +7,11 @@ #include #include -#include +#include #include namespace EightBit { - class MOS6502 : public Processor { + class MOS6502 : public LittleEndianProcessor { public: enum StatusBits { NF = Bit7, // Negative @@ -65,10 +65,6 @@ namespace EightBit { adjustNegative(datum); } - register16_t getWordPaged(uint8_t page, uint8_t offset); - uint8_t getBytePaged(uint8_t page, uint8_t offset); - void setBytePaged(uint8_t page, uint8_t offset, uint8_t value); - virtual void push(uint8_t value) final; virtual uint8_t pop() final; diff --git a/M6502/src/mos6502.cpp b/M6502/src/mos6502.cpp index e8ecade..0b0a008 100644 --- a/M6502/src/mos6502.cpp +++ b/M6502/src/mos6502.cpp @@ -2,7 +2,7 @@ #include "mos6502.h" EightBit::MOS6502::MOS6502(Bus& bus) -: Processor(bus) {} +: LittleEndianProcessor(bus) {} void EightBit::MOS6502::powerOn() { @@ -50,21 +50,6 @@ void EightBit::MOS6502::reset() { jump(getWordPaged(0xff, RSTvector)); } -EightBit::register16_t EightBit::MOS6502::getWordPaged(uint8_t page, uint8_t offset) { - const auto low = getBytePaged(page, offset); - ++BUS().ADDRESS().low; - const auto high = BUS().read(); - return register16_t(low, high); -} - -uint8_t EightBit::MOS6502::getBytePaged(uint8_t page, uint8_t offset) { - return BUS().read(register16_t(offset, page)); -} - -void EightBit::MOS6502::setBytePaged(uint8_t page, uint8_t offset, uint8_t value) { - BUS().write(register16_t(offset, page), value); -} - void EightBit::MOS6502::interrupt(uint8_t vector) { raise(HALT()); pushWord(PC()); diff --git a/inc/BigEndianProcessor.h b/inc/BigEndianProcessor.h new file mode 100644 index 0000000..04ce54f --- /dev/null +++ b/inc/BigEndianProcessor.h @@ -0,0 +1,56 @@ +#pragma once + +#include "Bus.h" +#include "Register.h" +#include "Processor.h" + +namespace EightBit { + class BigEndianProcessor : public Processor { + protected: + BigEndianProcessor(Bus& memory) : Processor(memory) {} + virtual ~BigEndianProcessor() = default; + + virtual register16_t getWord() { + const auto high = BUS().read(); + ++BUS().ADDRESS(); + const auto low = BUS().read(); + return register16_t(low, high); + } + + virtual void setWord(const register16_t value) { + BUS().write(value.high); + ++BUS().ADDRESS(); + BUS().write(value.low); + } + + virtual register16_t getWordPaged(uint8_t page, uint8_t offset) override { + const auto high = getBytePaged(page, offset); + ++BUS().ADDRESS().low; + const auto low = BUS().read(); + return register16_t(low, high); + } + + virtual void setWordPaged(uint8_t page, uint8_t offset, register16_t value) override { + setBytePaged(page, offset, value.high); + ++BUS().ADDRESS().low; + BUS().read(value.low); + } + + virtual register16_t fetchWord() final { + const auto high = fetchByte(); + const auto low = fetchByte(); + return register16_t(low, high); + } + + virtual void pushWord(const register16_t value) final { + push(value.low); + push(value.high); + } + + virtual register16_t popWord() final { + const auto high = pop(); + const auto low = pop(); + return register16_t(low, high); + } + }; +} diff --git a/inc/IntelProcessor.h b/inc/IntelProcessor.h index f5641a7..b9b246b 100644 --- a/inc/IntelProcessor.h +++ b/inc/IntelProcessor.h @@ -4,13 +4,13 @@ #include #include "Bus.h" -#include "Processor.h" +#include "LittleEndianProcessor.h" #include "Register.h" #include "EightBitCompilerDefinitions.h" namespace EightBit { - class IntelProcessor : public Processor + class IntelProcessor : public LittleEndianProcessor { public: struct opcode_decoded_t { @@ -122,8 +122,8 @@ namespace EightBit { // - register16_t getWord(); - void setWord(register16_t value); + virtual register16_t getWord() final; + virtual void setWord(register16_t value) final; // diff --git a/inc/LittleEndianProcessor.h b/inc/LittleEndianProcessor.h new file mode 100644 index 0000000..87d224e --- /dev/null +++ b/inc/LittleEndianProcessor.h @@ -0,0 +1,56 @@ +#pragma once + +#include "Bus.h" +#include "Register.h" +#include "Processor.h" + +namespace EightBit { + class LittleEndianProcessor : public Processor { + protected: + LittleEndianProcessor(Bus& memory) : Processor(memory) {} + virtual ~LittleEndianProcessor() = default; + + virtual register16_t getWord() { + const auto low = BUS().read(); + ++BUS().ADDRESS(); + const auto high = BUS().read(); + return register16_t(low, high); + } + + virtual void setWord(const register16_t value) { + BUS().write(value.low); + ++BUS().ADDRESS(); + BUS().write(value.high); + } + + virtual register16_t getWordPaged(uint8_t page, uint8_t offset) override { + const auto low = getBytePaged(page, offset); + ++BUS().ADDRESS().low; + const auto high = BUS().read(); + return register16_t(low, high); + } + + virtual void setWordPaged(uint8_t page, uint8_t offset, register16_t value) override { + setBytePaged(page, offset, value.low); + ++BUS().ADDRESS().low; + BUS().read(value.high); + } + + virtual register16_t fetchWord() final { + const auto low = fetchByte(); + const auto high = fetchByte(); + return register16_t(low, high); + } + + virtual void pushWord(const register16_t value) final { + push(value.high); + push(value.low); + } + + virtual register16_t popWord() final { + const auto low = pop(); + const auto high = pop(); + return register16_t(low, high); + } + }; +} diff --git a/inc/Processor.h b/inc/Processor.h index 92897fc..28e765e 100644 --- a/inc/Processor.h +++ b/inc/Processor.h @@ -97,7 +97,7 @@ namespace EightBit { static void clearFlag(uint8_t& f, const int flag, const int condition) { clearFlag(f, flag, !!condition); } static void clearFlag(uint8_t& f, const int flag, const uint32_t condition) { clearFlag(f, flag, !!condition); } - static void clearFlag(uint8_t& f, const int flag, const bool condition) { condition ? clearFlag(f, flag) : setFlag(f, flag); } + static void clearFlag(uint8_t& f, const int flag, const bool condition) { setFlag(f, flag, !condition); } Processor(Bus& memory); virtual ~Processor() = default; @@ -108,29 +108,31 @@ namespace EightBit { void halt() { --PC(); lower(HALT()); } void proceed() { ++PC(); raise(HALT()); } + uint8_t getBytePaged(uint8_t page, uint8_t offset) { + return BUS().read(register16_t(offset, page)); + } + + void setBytePaged(uint8_t page, uint8_t offset, uint8_t value) { + BUS().write(register16_t(offset, page), value); + } + uint8_t fetchByte() { return BUS().read(PC()++); } - register16_t fetchWord() { - const auto low = fetchByte(); - const auto high = fetchByte(); - return register16_t(low, high); - } + virtual register16_t getWord() = 0; + virtual void setWord(register16_t value) = 0; + + virtual register16_t getWordPaged(uint8_t page, uint8_t offset) = 0; + virtual void setWordPaged(uint8_t page, uint8_t offset, register16_t value) = 0; + + virtual register16_t fetchWord() = 0; virtual void push(uint8_t value) = 0; virtual uint8_t pop() = 0; - void pushWord(const register16_t value) { - push(value.high); - push(value.low); - } - - register16_t popWord() { - const auto low = pop(); - const auto high = pop(); - return register16_t(low, high); - } + virtual void pushWord(const register16_t value) = 0; + virtual register16_t popWord() = 0; void jump(const register16_t destination) { PC() = destination; diff --git a/src/EightBit.vcxproj b/src/EightBit.vcxproj index 35a9425..07881be 100644 --- a/src/EightBit.vcxproj +++ b/src/EightBit.vcxproj @@ -136,11 +136,13 @@ + + diff --git a/src/EightBit.vcxproj.filters b/src/EightBit.vcxproj.filters index fb893d3..343f8db 100644 --- a/src/EightBit.vcxproj.filters +++ b/src/EightBit.vcxproj.filters @@ -47,6 +47,12 @@ Header Files + + Header Files + + + Header Files + diff --git a/src/IntelProcessor.cpp b/src/IntelProcessor.cpp index 13967f4..a819603 100644 --- a/src/IntelProcessor.cpp +++ b/src/IntelProcessor.cpp @@ -2,7 +2,7 @@ #include "IntelProcessor.h" EightBit::IntelProcessor::IntelProcessor(Bus& bus) -: Processor(bus) { +: LittleEndianProcessor(bus) { for (int i = 0; i < 0x100; ++i) m_decodedOpcodes[i] = i; } @@ -21,14 +21,12 @@ uint8_t EightBit::IntelProcessor::pop() { } EightBit::register16_t EightBit::IntelProcessor::getWord() { - const auto low = BUS().read(); - MEMPTR() = ++BUS().ADDRESS(); - const auto high = BUS().read(); - return register16_t(low, high); + const auto returned = LittleEndianProcessor::getWord(); + MEMPTR() = BUS().ADDRESS(); + return returned; } void EightBit::IntelProcessor::setWord(const register16_t value) { - BUS().write(value.low); - MEMPTR() = ++BUS().ADDRESS(); - BUS().write(value.high); + LittleEndianProcessor::setWord(value); + MEMPTR() = BUS().ADDRESS(); }