mirror of https://github.com/bsnes-emu/bsnes.git
20 lines
571 B
C++
20 lines
571 B
C++
struct MegaDriveCartridge {
|
|
MegaDriveCartridge(string location, uint8_t* data, uint size);
|
|
|
|
string manifest;
|
|
|
|
//private:
|
|
struct Information {
|
|
} information;
|
|
};
|
|
|
|
MegaDriveCartridge::MegaDriveCartridge(string location, uint8_t* data, uint size) {
|
|
manifest.append("board\n");
|
|
manifest.append(" rom name=program.rom size=0x", hex(size), "\n");
|
|
manifest.append("\n");
|
|
manifest.append("information\n");
|
|
manifest.append(" title: ", Location::prefix(location), "\n");
|
|
manifest.append("\n");
|
|
manifest.append("note: heuristically generated by icarus\n");
|
|
}
|