2009-05-12 22:17:42 +02:00

20 lines
189 B
C++
Executable File

#include <../base.hpp>
#define CPU_CPP
namespace SNES {
void CPU::power() {
cpu_version = config.cpu.version;
}
void CPU::reset() {
}
CPU::CPU() {
}
CPU::~CPU() {
}
};