mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
323 B
C++
12 lines
323 B
C++
auto SuperGrafxInterface::information() -> Information {
|
|
Information information;
|
|
information.manufacturer = "NEC";
|
|
information.name = "SuperGrafx";
|
|
information.extension = "sg";
|
|
return information;
|
|
}
|
|
|
|
auto SuperGrafxInterface::load() -> bool {
|
|
return system.load(this, System::Model::SuperGrafx);
|
|
}
|