bsnes/higan/pce/cpu/cpu.cpp

49 lines
949 B
C++

#include <pce/pce.hpp>
namespace PCEngine {
CPU cpu;
#include "memory.cpp"
#include "io.cpp"
#include "irq.cpp"
#include "timer.cpp"
#include "serialization.cpp"
auto CPU::Enter() -> void {
while(true) scheduler.synchronize(), cpu.main();
}
auto CPU::main() -> void {
if(irq.pending()) return interrupt(irq.vector());
instruction();
}
auto CPU::step(uint clocks) -> void {
Thread::step(clocks);
timer.step(clocks);
synchronize(vdc0);
synchronize(vdc1);
synchronize(vce);
synchronize(psg);
for(auto peripheral : peripherals) synchronize(*peripheral);
}
auto CPU::power() -> void {
HuC6280::power();
create(CPU::Enter, system.colorburst() * 2.0);
r.pc.byte(0) = read(0x00, 0x1ffe);
r.pc.byte(1) = read(0x00, 0x1fff);
for(auto& byte : ram) byte = 0x00;
memory::fill(&irq, sizeof(IRQ));
memory::fill(&timer, sizeof(Timer));
memory::fill(&io, sizeof(IO));
}
auto CPU::lastCycle() -> void {
irq.poll();
}
}