bsnes/higan/pce/interface/pc-engine.cpp

12 lines
317 B
C++

auto PCEngineInterface::information() -> Information {
Information information;
information.manufacturer = "NEC";
information.name = "PC Engine";
information.extension = "pce";
return information;
}
auto PCEngineInterface::load() -> bool {
return system.load(this, System::Model::PCEngine);
}