EightBit/src/Processor.cpp
Adrian Conlon f38d326ca7 Improve the flexibility of the BUS mapping/read/write architecture.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2018-12-29 19:17:36 +00:00

74 lines
1.5 KiB
C++

#include "stdafx.h"
#include "Processor.h"
EightBit::Processor::Processor(Bus& bus)
: m_bus(bus) {
}
void EightBit::Processor::powerOn() {
Chip::powerOn();
raise(RESET());
raise(HALT());
raise(INT());
}
void EightBit::Processor::handleRESET() {
raise(RESET());
PC() = 0;
}
void EightBit::Processor::handleINT() {
raise(INT());
}
void EightBit::Processor::handleIRQ() {
raise(IRQ());
}
void EightBit::Processor::busWrite(const register16_t address, const uint8_t data) {
BUS().ADDRESS() = address;
busWrite(data);
}
void EightBit::Processor::busWrite(const uint8_t data) {
BUS().DATA() = data;
busWrite();
}
void EightBit::Processor::busWrite() {
BUS().write();
}
uint8_t EightBit::Processor::busRead(const register16_t address) {
BUS().ADDRESS() = address;
return busRead();
}
uint8_t EightBit::Processor::busRead() {
return BUS().read();
}
int EightBit::Processor::run(const int limit) {
int current = 0;
while (LIKELY(powered() && (current < limit)))
current += step();
return current;
}
int EightBit::Processor::execute(const uint8_t value) {
opcode() = value;
return execute();
}
// http://graphics.stanford.edu/~seander/bithacks.html#FixedSignExtend
int8_t EightBit::Processor::signExtend(const int b, uint8_t x) {
const uint8_t m = 1 << (b - 1); // mask can be pre-computed if b is fixed
x = x & ((1 << b) - 1); // (Skip this if bits in x above position b are already zero.)
const auto result = (x ^ m) - m;
return result;
}
void EightBit::Processor::ret() {
jump(popWord());
}