2017-06-04 20:38:34 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
2018-09-23 12:10:58 +00:00
|
|
|
#include "Chip.h"
|
2017-09-06 12:22:23 +00:00
|
|
|
#include "Bus.h"
|
|
|
|
#include "Register.h"
|
2017-06-04 20:38:34 +00:00
|
|
|
|
2017-11-20 19:17:49 +00:00
|
|
|
#include "EightBitCompilerDefinitions.h"
|
2017-09-03 11:11:14 +00:00
|
|
|
|
2017-06-04 20:38:34 +00:00
|
|
|
namespace EightBit {
|
2018-09-23 12:10:58 +00:00
|
|
|
class Processor : public Chip {
|
2017-06-04 20:38:34 +00:00
|
|
|
public:
|
2018-08-27 11:57:44 +00:00
|
|
|
// b: number of bits representing the number in x
|
|
|
|
// x: sign extend this b-bit number to r
|
|
|
|
static int8_t signExtend(int b, uint8_t x);
|
|
|
|
|
2018-10-27 16:30:23 +00:00
|
|
|
auto& PC() { return m_pc; }
|
2017-06-04 20:38:34 +00:00
|
|
|
|
2018-10-27 16:30:23 +00:00
|
|
|
auto& RESET() { return m_resetLine; }
|
|
|
|
auto& HALT() { return m_haltLine; }
|
|
|
|
auto& INT() { return m_intLine; }
|
|
|
|
auto& IRQ() { return INT(); } // Synonym
|
2018-06-09 23:40:56 +00:00
|
|
|
|
2018-08-25 00:34:30 +00:00
|
|
|
virtual void powerOn();
|
|
|
|
void reset() { lower(RESET()); }
|
2017-06-04 20:38:34 +00:00
|
|
|
|
2017-11-11 15:50:55 +00:00
|
|
|
int run(int limit);
|
2017-08-30 22:17:34 +00:00
|
|
|
virtual int step() = 0;
|
2017-07-25 17:56:43 +00:00
|
|
|
virtual int execute(uint8_t opcode) = 0;
|
|
|
|
|
2018-10-27 16:30:23 +00:00
|
|
|
auto cycles() const { return m_cycles; }
|
2018-08-25 11:09:26 +00:00
|
|
|
|
2018-08-27 10:27:33 +00:00
|
|
|
virtual register16_t peekWord(register16_t address) = 0;
|
2018-10-14 09:05:43 +00:00
|
|
|
virtual void pokeWord(register16_t address, register16_t value) = 0;
|
2018-08-27 10:27:33 +00:00
|
|
|
|
2017-06-04 20:38:34 +00:00
|
|
|
protected:
|
2017-09-06 12:22:23 +00:00
|
|
|
Processor(Bus& memory);
|
2017-11-30 23:15:40 +00:00
|
|
|
virtual ~Processor() = default;
|
2017-06-11 08:45:34 +00:00
|
|
|
|
2018-10-27 16:30:23 +00:00
|
|
|
auto& BUS() { return m_bus; }
|
2018-10-20 19:52:41 +00:00
|
|
|
|
2018-10-27 16:30:23 +00:00
|
|
|
auto halted() { return lowered(HALT()); }
|
|
|
|
auto halt() { --PC(); lower(HALT()); }
|
|
|
|
auto proceed() { ++PC(); raise(HALT()); }
|
2017-12-10 21:41:48 +00:00
|
|
|
|
2018-08-25 00:34:30 +00:00
|
|
|
virtual void handleRESET();
|
|
|
|
virtual void handleINT();
|
2018-08-25 11:09:26 +00:00
|
|
|
virtual void handleIRQ();
|
2018-08-25 00:34:30 +00:00
|
|
|
|
2018-10-27 16:30:23 +00:00
|
|
|
auto getBytePaged(const uint8_t page, const uint8_t offset) {
|
2018-08-17 20:53:49 +00:00
|
|
|
return BUS().read(register16_t(offset, page));
|
|
|
|
}
|
|
|
|
|
2018-09-20 23:16:00 +00:00
|
|
|
void setBytePaged(const uint8_t page, const uint8_t offset, const uint8_t value) {
|
2018-08-17 20:53:49 +00:00
|
|
|
BUS().write(register16_t(offset, page), value);
|
|
|
|
}
|
|
|
|
|
2018-10-27 16:30:23 +00:00
|
|
|
auto fetchByte() {
|
2018-08-11 20:19:19 +00:00
|
|
|
return BUS().read(PC()++);
|
2018-01-06 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
2018-08-17 20:53:49 +00:00
|
|
|
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;
|
2017-08-28 20:18:08 +00:00
|
|
|
|
2017-08-28 12:19:17 +00:00
|
|
|
virtual void push(uint8_t value) = 0;
|
|
|
|
virtual uint8_t pop() = 0;
|
|
|
|
|
2018-08-17 20:53:49 +00:00
|
|
|
virtual void pushWord(const register16_t value) = 0;
|
|
|
|
virtual register16_t popWord() = 0;
|
2017-08-28 12:19:17 +00:00
|
|
|
|
2018-10-27 16:30:23 +00:00
|
|
|
auto getWord(const register16_t address) {
|
2018-08-21 17:10:38 +00:00
|
|
|
BUS().ADDRESS() = address;
|
|
|
|
return getWord();
|
|
|
|
}
|
|
|
|
|
2018-09-20 23:16:00 +00:00
|
|
|
void setWord(const register16_t address, const register16_t value) {
|
2018-08-21 17:10:38 +00:00
|
|
|
BUS().ADDRESS() = address;
|
|
|
|
return setWord(value);
|
|
|
|
}
|
|
|
|
|
2018-04-14 08:39:06 +00:00
|
|
|
void jump(const register16_t destination) {
|
2018-03-18 22:40:23 +00:00
|
|
|
PC() = destination;
|
2017-08-28 20:18:08 +00:00
|
|
|
}
|
|
|
|
|
2018-04-14 08:39:06 +00:00
|
|
|
void call(const register16_t destination) {
|
2017-08-28 20:18:08 +00:00
|
|
|
pushWord(PC());
|
2018-03-18 22:40:23 +00:00
|
|
|
jump(destination);
|
2017-08-28 20:18:08 +00:00
|
|
|
}
|
|
|
|
|
2018-08-17 12:59:59 +00:00
|
|
|
virtual void ret() {
|
2018-03-18 22:40:23 +00:00
|
|
|
jump(popWord());
|
2017-08-28 20:18:08 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 22:05:01 +00:00
|
|
|
void resetCycles() { m_cycles = 0; }
|
2018-04-14 08:39:06 +00:00
|
|
|
void addCycles(const int extra) { m_cycles += extra; }
|
2017-11-03 22:05:01 +00:00
|
|
|
void addCycle() { ++m_cycles; }
|
|
|
|
|
2017-06-19 12:53:00 +00:00
|
|
|
private:
|
2017-11-03 22:05:01 +00:00
|
|
|
Bus& m_bus;
|
2017-11-10 22:41:50 +00:00
|
|
|
int m_cycles = 0;
|
2018-06-15 23:55:32 +00:00
|
|
|
register16_t m_pc;
|
2017-12-10 21:41:48 +00:00
|
|
|
|
|
|
|
PinLevel m_intLine = Low;
|
|
|
|
PinLevel m_haltLine = Low;
|
|
|
|
PinLevel m_resetLine = Low;
|
2017-06-04 20:38:34 +00:00
|
|
|
};
|
2017-11-30 23:19:17 +00:00
|
|
|
}
|