mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
330 B
C++
12 lines
330 B
C++
SuperGrafxInterface::SuperGrafxInterface() {
|
|
information.manufacturer = "NEC";
|
|
information.name = "SuperGrafx";
|
|
|
|
media.append({ID::SuperGrafx, "SuperGrafx", "sg"});
|
|
}
|
|
|
|
auto SuperGrafxInterface::load(uint id) -> bool {
|
|
if(id == ID::SuperGrafx) return system.load(this, System::Model::SuperGrafx);
|
|
return false;
|
|
}
|