bsnes/higan/ms/cpu/cpu.hpp

16 lines
249 B
C++
Raw Normal View History

//Zilog Z80
struct CPU : Processor::Z80, Thread {
static auto Enter() -> void;
auto main() -> void;
auto step(uint clocks) -> void;
auto power() -> void;
auto reset() -> void;
private:
uint64 instructionsExecuted;
};
extern CPU cpu;