mirror of https://github.com/bsnes-emu/bsnes.git
10 lines
159 B
C++
10 lines
159 B
C++
|
//Zilog Z80
|
||
|
|
||
|
struct CPU : Processor::Z80, Thread {
|
||
|
static auto Enter() -> void;
|
||
|
auto main() -> void;
|
||
|
auto step(uint clocks) -> void;
|
||
|
};
|
||
|
|
||
|
extern CPU cpu;
|