SMS: add Lambo by Genesis Project (demo)

This commit is contained in:
dinkc64 2015-04-07 05:17:43 +00:00
parent b59c1452a5
commit 42650364f4
1 changed files with 19 additions and 0 deletions

View File

@ -27532,3 +27532,22 @@ struct BurnDriver BurnDrvsms_brucelee = {
256, 192, 4, 3
};
// Lambo (DEMO) by Genesis Project
static struct BurnRomInfo sms_lamboRomDesc[] = {
{ "GenesisProject-Lambo.sms", 0x40000, 0x92FE2775, BRF_PRG | BRF_ESS },
};
STD_ROM_PICK(sms_lambo)
STD_ROM_FN(sms_lambo)
struct BurnDriver BurnDrvsms_lambo = {
"sms_lambo", NULL, NULL, NULL, "2015",
"Lambo (Demo)\0", NULL, "Genesis Project", "Sega Master System",
NULL, NULL, NULL, NULL,
BDF_GAME_WORKING | BDF_CLONE, 2, HARDWARE_SEGA_MASTER_SYSTEM | HARDWARE_SMS_DISPLAY_PAL, GBF_MISC, 0,
SMSGetZipName, sms_lamboRomInfo, sms_lamboRomName, NULL, NULL, SMSInputInfo, SMSDIPInfo,
SMSInit, SMSExit, SMSFrame, SMSDraw, SMSScan, &SMSPaletteRecalc, 0x1000,
256, 192, 4, 3
};