mirror of https://github.com/bsnes-emu/bsnes.git
11 lines
116 B
C++
11 lines
116 B
C++
|
class CPU {
|
||
|
public:
|
||
|
#include "registers.hpp"
|
||
|
|
||
|
void main();
|
||
|
void power();
|
||
|
void reset();
|
||
|
};
|
||
|
|
||
|
extern CPU cpu;
|