trunk/src/mame/drivers/lethal.c
| r241903 | r241904 | |
| 109 | 109 | ---------------- --- -------- --------- ----------------------- |
| 110 | 110 | 000xxxxxxxxxxxxx R xxxxxxxx PROM program ROM (banked) |
| 111 | 111 | 001xxxxxxxxxxxxx R/W xxxxxxxx WRAM work RAM |
| 112 | | 010000--00xxxxxx W xxxxxxxx VREG 056832 control |
| 113 | | 010000--01--xxxx W xxxxxxxx VSCG 056832 control |
| 112 | 010000--00xxxxxx W xxxxxxxx VREG 054156 control |
| 113 | 010000--01--xxxx W xxxxxxxx VSCG 054157 control |
| 114 | 114 | 010000--1000---- R/W -------- AFR watchdog reset |
| 115 | 115 | 010000--1001---- W SDON sound enable? |
| 116 | 116 | 010000--1010 CCLR ? |
| r241903 | r241904 | |
| 121 | 121 | 010000--11-000-- W --x----- CRDB / |
| 122 | 122 | 010000--11-001-- W -----xxx EEP EEPROM DI, CS, CLK |
| 123 | 123 | 010000--11-001-- W ----x--- MUT sound mute? |
| 124 | | 010000--11-001-- W ---x---- CBNK bank switch 4800-7FFF region between palette and 053245/056832 |
| 124 | 010000--11-001-- W ---x---- CBNK bank switch 4400-7FFF region between palette and 053245/054156 |
| 125 | 125 | 010000--11-001-- W --x----- n.c. |
| 126 | 126 | 010000--11-001-- W xx------ SHD0/1 shadow control |
| 127 | 127 | 010000--11-010-- W -----xxx PCU1/XBA palette bank (tilemap A) |
| r241903 | r241904 | |
| 138 | 138 | 010000--11-11011 R -------x NCPU ? |
| 139 | 139 | 010000--11-111-- W --xxxxxx BREG ROM bank select |
| 140 | 140 | 010010--00------ n.c. |
| 141 | | 010010--01---xxx R/W xxxxxxxx OREG 053244 |
| 141 | 010010--01---xxx R/W xxxxxxxx OREG 053244/053245 control |
| 142 | 142 | 010010--10-xxxxx R/W xxxxxxxx HIP 054000 |
| 143 | 143 | 010010--11 R/W xxxxxxxx PAR sound communication |
| 144 | | 010100xxxxxxxxxx R/W xxxxxxxx OBJ 053245 |
| 145 | | 011xxxxxxxxxxxxx R/W xxxxxxxx VRAM 056832 |
| 144 | 010100xxxxxxxxxx R/W xxxxxxxx OBJ 053245 sprite RAM |
| 145 | 011xxxxxxxxxxxxx R/W xxxxxxxx VRAM 054156 video RAM |
| 146 | 146 | 1xxxxxxxxxxxxxxx R xxxxxxxx PROM program ROM |
| 147 | 147 | |
| 148 | 148 | |
| r241903 | r241904 | |
| 231 | 231 | |
| 232 | 232 | note: |
| 233 | 233 | |
| 234 | | lethal enforcers has 2 sprite rendering chips working in parallel mixing |
| 235 | | data together to give 6bpp.. we cheat by using a custom function in |
| 236 | | konamiic.c and a fixed 6bpp decode. |
| 234 | Lethal Enforcers has two sprite rendering chips working in parallel with their |
| 235 | output mixed to give 6bpp, and two tilemap rendering chips working in parallel |
| 236 | to give 8bpp. We currently cheat, using just one of each device but using |
| 237 | alternate gfx layouts. Emulating it accurately will require separating the |
| 238 | "front end" chips (053245, 054156) from the "back end" chips (053244, 054157) |
| 239 | as only the latter are doubled. |
| 237 | 240 | |
| 238 | 241 | mirror not set up correctly |
| 239 | 242 | |
| r241903 | r241904 | |
| 265 | 268 | /* bit 1 is cs (active low) */ |
| 266 | 269 | /* bit 2 is clock (active high) */ |
| 267 | 270 | /* bit 3 is "MUT" on the schematics (audio mute?) */ |
| 268 | | /* bit 4 bankswitches the 4800-7fff region: 0 = registers, 1 = RAM ("CBNK" on schematics) */ |
| 271 | /* bit 4 bankswitches the 4400-7fff region: 0 = registers, 1 = palette RAM ("CBNK" on schematics) */ |
| 269 | 272 | /* bit 6 is "SHD0" (some kind of shadow control) */ |
| 270 | 273 | /* bit 7 is "SHD1" (ditto) */ |
| 271 | 274 | |
| 272 | 275 | m_cur_control2 = data; |
| 273 | 276 | |
| 274 | | m_bank4800->set_bank((m_cur_control2 >> 4) & 1); |
| 277 | m_bank4000->set_bank(BIT(m_cur_control2, 4)); |
| 275 | 278 | |
| 276 | 279 | ioport("EEPROMOUT")->write(m_cur_control2, 0xff); |
| 277 | 280 | } |
| r241903 | r241904 | |
| 302 | 305 | membank("bank1")->set_entry(data); |
| 303 | 306 | } |
| 304 | 307 | |
| 305 | | // use one more palette entry for the BG color |
| 306 | | WRITE8_MEMBER(lethal_state::le_bgcolor_w) |
| 307 | | { |
| 308 | | m_palette->write(space, 0x3800 + offset, data); |
| 309 | | } |
| 310 | | |
| 311 | 308 | READ8_MEMBER(lethal_state::guns_r) |
| 312 | 309 | { |
| 313 | 310 | switch (offset) |
| r241903 | r241904 | |
| 356 | 353 | AM_RANGE(0x40d9, 0x40d9) AM_READ_PORT("INPUTS") |
| 357 | 354 | AM_RANGE(0x40db, 0x40db) AM_READ(gunsaux_r) // top X bit of guns |
| 358 | 355 | AM_RANGE(0x40dc, 0x40dc) AM_WRITE(le_bankswitch_w) |
| 359 | | AM_RANGE(0x47fe, 0x47ff) AM_WRITE(le_bgcolor_w) // BG color |
| 360 | | AM_RANGE(0x4800, 0x7fff) AM_DEVICE("bank4800", address_map_bank_device, amap8) |
| 356 | AM_RANGE(0x4000, 0x43ff) AM_UNMAP // first 0x400 bytes of palette RAM are inaccessible |
| 357 | AM_RANGE(0x4000, 0x7fff) AM_DEVICE("bank4000", address_map_bank_device, amap8) |
| 361 | 358 | AM_RANGE(0x8000, 0xffff) AM_ROM AM_REGION("maincpu", 0x38000) |
| 362 | 359 | ADDRESS_MAP_END |
| 363 | 360 | |
| 364 | | static ADDRESS_MAP_START( bank4800_map, AS_PROGRAM, 8, lethal_state ) |
| 365 | | AM_RANGE(0x0040, 0x004f) AM_DEVREADWRITE("k053244", k05324x_device, k053244_r, k053244_w) |
| 366 | | AM_RANGE(0x0080, 0x009f) AM_DEVREADWRITE("k054000", k054000_device, read, write) |
| 367 | | AM_RANGE(0x00c6, 0x00c6) AM_WRITE(sound_cmd_w) |
| 368 | | AM_RANGE(0x00c7, 0x00c7) AM_WRITE(sound_irq_w) |
| 369 | | AM_RANGE(0x00ca, 0x00ca) AM_READ(sound_status_r) |
| 370 | | AM_RANGE(0x0800, 0x17ff) AM_MASK(0x07ff) AM_DEVREADWRITE("k053244", k05324x_device, k053245_r, k053245_w) |
| 371 | | AM_RANGE(0x1800, 0x1fff) AM_DEVREADWRITE("k056832", k056832_device, ram_code_lo_r, ram_code_lo_w) |
| 372 | | AM_RANGE(0x2000, 0x27ff) AM_DEVREADWRITE("k056832", k056832_device, ram_code_hi_r, ram_code_hi_w) |
| 373 | | AM_RANGE(0x2800, 0x2fff) AM_DEVREADWRITE("k056832", k056832_device, ram_attr_lo_r, ram_attr_lo_w) |
| 374 | | AM_RANGE(0x3000, 0x37ff) AM_DEVREADWRITE("k056832", k056832_device, ram_attr_hi_r, ram_attr_hi_w) |
| 375 | | AM_RANGE(0x3800, 0x7001) AM_RAM_DEVWRITE("palette", palette_device, write) AM_SHARE("palette") // 2 extra bytes for the BG color |
| 361 | static ADDRESS_MAP_START( bank4000_map, AS_PROGRAM, 8, lethal_state ) |
| 362 | // VRD = 0 or 1, CBNK = 0 |
| 363 | AM_RANGE(0x0840, 0x084f) AM_MIRROR(0x8000) AM_DEVREADWRITE("k053244", k05324x_device, k053244_r, k053244_w) |
| 364 | AM_RANGE(0x0880, 0x089f) AM_MIRROR(0x8000) AM_DEVREADWRITE("k054000", k054000_device, read, write) |
| 365 | AM_RANGE(0x08c6, 0x08c6) AM_MIRROR(0x8000) AM_WRITE(sound_cmd_w) |
| 366 | AM_RANGE(0x08c7, 0x08c7) AM_MIRROR(0x8000) AM_WRITE(sound_irq_w) |
| 367 | AM_RANGE(0x08ca, 0x08ca) AM_MIRROR(0x8000) AM_READ(sound_status_r) |
| 368 | AM_RANGE(0x1000, 0x17ff) AM_MIRROR(0x8000) AM_DEVREADWRITE("k053244", k05324x_device, k053245_r, k053245_w) |
| 369 | |
| 370 | // VRD = 0, CBNK = 0 |
| 371 | AM_RANGE(0x2000, 0x27ff) AM_DEVREADWRITE("k056832", k056832_device, ram_code_lo_r, ram_code_lo_w) |
| 372 | AM_RANGE(0x2800, 0x2fff) AM_DEVREADWRITE("k056832", k056832_device, ram_code_hi_r, ram_code_hi_w) |
| 373 | AM_RANGE(0x3000, 0x37ff) AM_DEVREADWRITE("k056832", k056832_device, ram_attr_lo_r, ram_attr_lo_w) |
| 374 | AM_RANGE(0x3800, 0x3fff) AM_DEVREADWRITE("k056832", k056832_device, ram_attr_hi_r, ram_attr_hi_w) |
| 375 | |
| 376 | // VRD = 1, CBNK = 0 or 1 |
| 377 | AM_RANGE(0xa000, 0xbfff) AM_MIRROR(0x4000) AM_UNMAP // AM_DEVREAD("k056832", k056832_device, rom_byte_r) |
| 378 | |
| 379 | // CBNK = 1; partially overlaid when VRD = 1 |
| 380 | AM_RANGE(0x4000, 0x7fff) AM_MIRROR(0x8000) AM_RAM_DEVWRITE("palette", palette_device, write) AM_SHARE("palette") |
| 376 | 381 | ADDRESS_MAP_END |
| 377 | 382 | |
| 378 | 383 | static ADDRESS_MAP_START( le_sound, AS_PROGRAM, 8, lethal_state ) |
| r241903 | r241904 | |
| 467 | 472 | membank("bank1")->set_entry(0); |
| 468 | 473 | |
| 469 | 474 | save_item(NAME(m_cur_control2)); |
| 475 | save_item(NAME(m_layer_colorbase)); |
| 470 | 476 | save_item(NAME(m_sprite_colorbase)); |
| 471 | | save_item(NAME(m_layer_colorbase)); |
| 477 | save_item(NAME(m_back_colorbase)); |
| 472 | 478 | } |
| 473 | 479 | |
| 474 | 480 | void lethal_state::machine_reset() |
| r241903 | r241904 | |
| 477 | 483 | m_layer_colorbase[i] = 0; |
| 478 | 484 | |
| 479 | 485 | m_sprite_colorbase = 0; |
| 486 | m_back_colorbase = 0; |
| 480 | 487 | m_cur_control2 = 0; |
| 481 | | m_bank4800->set_bank(0); |
| 488 | m_bank4000->set_bank(0); |
| 482 | 489 | } |
| 483 | 490 | |
| 484 | 491 | static MACHINE_CONFIG_START( lethalen, lethal_state ) |
| r241903 | r241904 | |
| 491 | 498 | MCFG_CPU_ADD("soundcpu", Z80, MAIN_CLOCK/4) /* verified on pcb */ |
| 492 | 499 | MCFG_CPU_PROGRAM_MAP(le_sound) |
| 493 | 500 | |
| 494 | | MCFG_DEVICE_ADD("bank4800", ADDRESS_MAP_BANK, 0) |
| 495 | | MCFG_DEVICE_PROGRAM_MAP(bank4800_map) |
| 501 | MCFG_DEVICE_ADD("bank4000", ADDRESS_MAP_BANK, 0) |
| 502 | MCFG_DEVICE_PROGRAM_MAP(bank4000_map) |
| 496 | 503 | MCFG_ADDRESS_MAP_BANK_ENDIANNESS(ENDIANNESS_BIG) |
| 497 | 504 | MCFG_ADDRESS_MAP_BANK_DATABUS_WIDTH(8) |
| 498 | | MCFG_ADDRESS_MAP_BANK_ADDRBUS_WIDTH(15) |
| 499 | | MCFG_ADDRESS_MAP_BANK_STRIDE(0x3800) |
| 505 | MCFG_ADDRESS_MAP_BANK_ADDRBUS_WIDTH(16) |
| 506 | MCFG_ADDRESS_MAP_BANK_STRIDE(0x4000) |
| 500 | 507 | |
| 501 | 508 | MCFG_EEPROM_SERIAL_ER5911_8BIT_ADD("eeprom") |
| 502 | 509 | |
| r241903 | r241904 | |
| 511 | 518 | MCFG_SCREEN_UPDATE_DRIVER(lethal_state, screen_update_lethalen) |
| 512 | 519 | MCFG_SCREEN_PALETTE("palette") |
| 513 | 520 | |
| 514 | | MCFG_PALETTE_ADD("palette", 7168+1) |
| 521 | MCFG_PALETTE_ADD("palette", 8192) |
| 515 | 522 | MCFG_PALETTE_ENABLE_SHADOWS() |
| 516 | 523 | MCFG_PALETTE_FORMAT(xBBBBBGGGGGRRRRR) |
| 517 | 524 | |
trunk/src/mame/drivers/naomi.c
| r241903 | r241904 | |
| 254 | 254 | Sticker EPROM FLASHROMs X76F100 EPM7064S 315-5881 |
| 255 | 255 | Game on cart IC22# # of SOP56 IC37# IC41# IC42# Notes |
| 256 | 256 | ---------------------------------------------------------------------------------------------------------------------------------- |
| 257 | | Club Kart: European Session (2003, prototype) no cart * 21 (64Mb) present 315-6206 not present *instead of EPROM have tiny PCB with 2 flashroms on it |
| 258 | | Crackin' DJ part 2 840-0068C 23674 20 (64Mb) present 315-6206 317-0311-COM PCB have label 840-0068B-01 837-14124 |
| 257 | Club Kart: European Session (2003, prototype) no cart * 21 (64Mb) present 315-6206 not present * instead of EPROM have tiny PCB with 2 flashroms on it |
| 258 | Crackin' DJ part 2 840-0068C 23674 20 (64Mb) present 315-6206 317-0311-COM PCB have label 840-0068B-01 837-14124, requires regular 837-13551 and 837-13938 rotary JVS boards, and turntable simulation |
| 259 | Ferrari F355 Challenge (twin, prototype) no cart 22848P* 21 (64Mb) present 315-6206 317-0267-COM * flash-PCB have CRC 330B A417, the rest is the same as regular cart, not dumped but known to exist |
| 259 | 260 | Ferrari F355 Challenge 2 (twin) no cart 23399 21 (64Mb) present 315-6206 317-0287-COM content is the same as regular 171-7919A cart |
| 260 | 261 | House of the Dead 2 (prototype) no cart A1E2 21 (64Mb) present 315-6206 present no label on IC42 |
| 261 | | Inu No Osanpo / Dog Walking (Rev A) 840-0073C 22294A 16 (64Mb) present 315-6206 317-0316-JPN |
| 262 | | Samba de Amigo (prototype) no cart * 21 (64Mb) present 315-6206 317-0270-COM *instead of EPROM have tiny PCB with 2 flashroms on it |
| 263 | | Soul Surfer (Rev A) 840-0095C 23838C 21 (64Mb) present 315-6206 not present todo: verify if it's Rev A or Rev C |
| 262 | Inu No Osanpo / Dog Walking (Rev A) 840-0073C 22294A 16 (64Mb) present 315-6206 317-0316-JPN requires 837-13844 JVS IO with special jumpers settings enabling rotary |
| 263 | Maze of the Kings The (prototype) no cart * 21 (64Mb) present 315-6206 FRI * flash-PCB, not dumped but known to exist |
| 264 | Samba de Amigo (prototype) no cart * 21 (64Mb) present 315-6206 317-0270-COM * instead of EPROM have tiny PCB with 2 flashroms on it |
| 265 | Soul Surfer (Rev A) 840-0095C 23838C 21 (64Mb) present 315-6206 not present |
| 264 | 266 | Star Horse (server) 840-0055C 23626 17 (64Mb) present 315-6206 not present |
| 265 | 267 | The King of Route 66 (Rev A) 840-0087C 23819A 20 (64Mb) present 315-6206 not present content is the same as regular 171-8132A cart |
| 266 | | Virtua NBA (prototype) no cart * 21 (64Mb) present 315-6206 317-0271-COM *instead of EPROM have tiny PCB with 2 flashroms on it |
| 268 | Virtua NBA (prototype) no cart * 21 (64Mb) present 315-6206 317-0271-COM * instead of EPROM have tiny PCB with 2 flashroms on it |
| 269 | Virtua Tennis / Power Smash (prototype) no cart * 21 (64Mb) present 315-6206 317-0263-COM * flash-PCB, title screen have label "SOFT R&D Dept.#3", not dumped but known to exist |
| 267 | 270 | |
| 268 | 271 | |
| 269 | 272 | 837-13668 171-7919A (C) Sega 1998 |
| r241903 | r241904 | |
| 301 | 304 | 18 Wheeler (deluxe) (Rev A) 840-0023C 22185A 20 (64Mb) present 315-6213 317-0273-COM |
| 302 | 305 | 18 Wheeler (standard) 840-0036C 23298 20 (64Mb) present 315-6213 317-0273-COM |
| 303 | 306 | 18 Wheeler (upright) 840-0037C 23299 20 (64Mb) present 315-6213 317-0273-COM |
| 304 | | Airline Pilots (deluxe) (Rev B) ? 21787B 11 (64Mb) present 315-6213 317-0251-COM 2 know BIOS 21801 (USA), 21802 (EXP) |
| 307 | Airline Pilots (deluxe) (Rev B) ? 21787B 11 (64Mb) present 315-6213 317-0251-COM 2 known BIOS 21801 (USA), 21802 (EXP) |
| 305 | 308 | Airline Pilots (Rev A) 840-0005C 21739A 11 (64Mb) present 315-6213 317-0251-COM |
| 306 | 309 | Cosmic Smash 840-0044C 23428 8 (64Mb) ? 315-6213 317-0289-COM joystick + 2 buttons |
| 307 | 310 | Cosmic Smash (Rev A) 840-0044C 23428A 8 (64Mb) ? 315-6213 317-0289-COM joystick + 2 buttons |
| r241903 | r241904 | |
| 314 | 317 | Derby Owners Club 2000 Ver.2 (Rev A) 840-0052C 22284A 16 (64Mb) present 315-6213 not present |
| 315 | 318 | Dynamite Baseball '99 / World Series'99 (Rev B) 840-0019C 22141B 19 (64Mb) ? 315-6213 317-0269-JPN requires special panel (joystick + 2 buttons + bat controller for each player) |
| 316 | 319 | Dynamite Baseball Naomi 840-0001C 21575 21 (64Mb) ? 315-6213 317-0246-JPN requires special panel (joystick + 2 buttons + bat controller for each player) |
| 317 | | Ferrari F355 Challenge 834-13842 21902 21 (64Mb) present 315-6213 317-0254-COM requires special BIOS not yet dumped |
| 318 | | Ferrari F355 Challenge (twin) 834-13950 22848 21 (64Mb) present 315-6213 317-0267-COM 2 know BIOS 22850 (USA), 22851 (EXP) |
| 319 | | Ferrari F355 Challenge 2 (twin) 840-0042C 23399 21 (64Mb) present 315-6213 317-0287-COM 2 know BIOS 22850 (USA), 22851 (EXP) |
| 320 | Ferrari F355 Challenge (deluxe) 834-13842 21902 21 (64Mb) present 315-6213 317-0254-COM BIOS 21863 (USA), also known to exists Japanese BIOS, not dumped |
| 321 | Ferrari F355 Challenge (twin) 834-13950 22848 21 (64Mb) present 315-6213 317-0267-COM 2 known BIOS 22850 (USA), 22851 (EXP) |
| 322 | Ferrari F355 Challenge 2 (twin) 840-0042C 23399 21 (64Mb) present 315-6213 317-0287-COM 2 known BIOS 22850 (USA), 22851 (EXP) |
| 320 | 323 | Giant Gram: All Japan Pro Wrestling 2 840-0007C 21820 9 (64Mb) ? 315-6213 317-0253-JPN joystick + 3 buttons |
| 321 | 324 | Guilty Gear X 841-0013C 23356 14 (64Mb) ? 315-6213 317-5063-COM |
| 322 | 325 | Gun Spike / Cannon Spike 841-0012C 23210 12 (64Mb) present 315-6213 317-5060-COM |
| 323 | 326 | Heavy Metal Geomatrix (Rev A) HMG016007 23716A 11 (64Mb) present 315-6213 317-5071-COM joystick + 2 buttons |
| 324 | 327 | House of the Dead 2 (original) 834-13636 21385 20 (64Mb) not present 315-6213 not present |
| 325 | 328 | House of the Dead 2 834-13636-01 21585 20 (64Mb) not present 315-6213 not present |
| 326 | | Idol Janshi Suchie-Pai 3 841-0002C 21979 14 (64Mb) ? 315-6213 317-5047-JPN requires special I/O board and mahjong panel |
| 329 | Idol Janshi Suchie-Pai 3 841-0002C 21979 14 (64Mb) ? 315-6213 317-5047-JPN requires mahjong panel |
| 327 | 330 | Jambo! Safari (Rev A) 840-0013C 22826A 8 (64Mb) ? 315-6213 317-0264-COM |
| 328 | 331 | Mars TV 840-0025C 22993 15 (64Mb) present 315-6213 317-0074-JPN |
| 329 | | OutTrigger 840-0017C 22163 19 (64Mb) ? 315-6213 317-0266-COM requires analog controllers/special panel |
| 332 | OutTrigger 840-0017C 22163 19 (64Mb) ? 315-6213 317-0266-COM requires regular 837-13551 and 837-13938 rotary JVS boards, and special panel |
| 330 | 333 | Power Stone 841-0001C 21597 8 (64Mb) present 315-6213 317-5046-COM joystick + 3 buttons |
| 331 | 334 | Power Stone 2 841-0008C 23127 9 (64Mb) present 315-6213 317-5054-COM joystick + 3 buttons |
| 332 | 335 | Puyo Puyo Da! 841-0006C 22206 20 (64Mb) ? 315-6213 ? |
| 333 | | Ring Out 4x4 840-0004C 21779 10 (64Mb) present 315-6213 317-0250-COM |
| 336 | Ring Out 4x4 840-0004C 21779 10 (64Mb) present 315-6213 317-0250-COM requires 2 JVS boards |
| 334 | 337 | Samba de Amigo (Rev B) 840-0020C 22966B 16 (64Mb) present 315-6213 317-0270-COM will boot but requires special controller to play it |
| 335 | | Sega Marine Fishing 840-0027C 22221 10 (64Mb) ? 315-6213 not present ROM 3&4 not present. Requires special I/O board and fishing controller |
| 338 | Sega Marine Fishing 840-0027C 22221 10 (64Mb) ? 315-6213 not present ROM 3&4 not present. Requires fishing controller |
| 336 | 339 | Sega Strike Fighter (Rev A) 840-0035C 23323A 20 (64Mb) present 315-6213 317-0281-COM |
| 337 | 340 | Sega Tetris 840-0018C 22909 6 (64Mb) present 315-6213 317-0268-COM |
| 338 | 341 | Slashout 840-0041C 23341 17 (64Mb) ? 315-6213 317-0286-COM joystick + 4 buttons |
| 339 | 342 | Spawn In the Demon's Hand (Rev B) 841-0005C 22977B 10 (64Mb) ? 315-6213 317-5051-COM joystick + 4 buttons |
| 340 | 343 | Super Major League '99 840-0012C 22059 21 (64Mb) ? 315-6213 ? |
| 341 | 344 | The Typing of the Dead (Rev A) 840-0026C 23021A 20 (64Mb) present 315-6213 not present |
| 342 | | Touch de UNO! / Unou Nouryoku Check Machine 840-0008C 22073 4 (64Mb) present 315-6213 317-0255-JPN |
| 345 | Touch de UNO! / Unou Nouryoku Check Machine 840-0008C 22073 4 (64Mb) present 315-6213 317-0255-JPN requires special JVS board with touch input and printer |
| 343 | 346 | Toy Fighter / Waffupu 840-0011C 22035 10 (64Mb) present 315-6212 317-0257-COM joystick + 3 buttons |
| 344 | 347 | Virtua NBA 840-0021C-01 23073 21 (64Mb) present 315-6213 not present |
| 345 | 348 | Virtua NBA (original) 840-0021C 22949 21 (64Mb) present 315-6213 317-0271-COM |
| r241903 | r241904 | |
| 444 | 447 | Sticker EPROM MASKROMs 25LC040 A54SX32 |
| 445 | 448 | Game on cart IC11# # of SOP44 IC13S# IC1# Notes |
| 446 | 449 | ------------------------------------------------------------------------------------------------------------------------------- |
| 447 | | Club Kart Prize (Rev A) 840-0129C 24082A 16 (64Mb) present 317-0368-COM A54SX32A |
| 448 | | Club Kart Prize Ver. B 840-0137C 24149 16 (64Mb) present 317-0368-COM A54SX32A |
| 450 | Club Kart Prize (Rev A) 840-0129C 24082A 16 (64Mb) present 317-0368-COM requires Naomi-based hopper controller (Naomi bd + 840-0130 cart + 837-14381 "G2 EXPANSION BD") |
| 451 | Club Kart Prize Ver. B 840-0137C 24149 16 (64Mb) present 317-0368-COM requires 837-14438 "SH I/O BD" hopper controller (not dumped) |
| 449 | 452 | Giant Gram 2000 840-0039C 23377 20 (64Mb) present 317-0296-COM |
| 450 | | Kick '4' Cash 840-0140C 24212 16 (64Mb) present 317-0397-COM A54SX32A |
| 453 | Kick '4' Cash 840-0140C 24212 16 (64Mb) present 317-0397-COM requires 837-14438 "SH I/O BD" hopper controller (not dumped) |
| 451 | 454 | Marvel Vs. Capcom 2 New Age of Heroes (Rev A) 841-0007C-02 23085A 14 (64Mb)* present 317-5058-COM *(+2x 32Mb) |
| 452 | | MushiKing The King of Beetles 2K3 2ND 840-0150C 24217 6 (64Mb) present 317-0394-COM |
| 455 | MushiKing The King of Beetles 2K3 2ND 840-0150C 24217 6 (64Mb) present 317-0394-COM requires 610-0669 barcode reader, 838-14245-92 "MAPLE/232C CONVERT BD" (MIE-based), 838-14243 "RFID CHIP R/W BD" and RFID chip |
| 453 | 456 | Quiz Ah Megamisama 840-0030C 23227 16 (64Mb) present 317-0280-JPN |
| 454 | | Shootout Pool 840-0098C 23844 4 (64Mb) present 317-0336-COM |
| 455 | | Shootout Pool - Shootout Pool Prize (Rev A) 840-0128C 24065A 4 (64Mb) present 317-0367-COM |
| 456 | | Shootout Pool Medal 840-0136C 24148 4 (64Mb) present 317-0367-COM |
| 457 | Shootout Pool 840-0098C 23844 4 (64Mb) present 317-0336-COM requires regular 837-13551 and 837-13938 rotary JVS boards |
| 458 | Shootout Pool Prize / The Medal (Rev A) 840-0128C 24065A 4 (64Mb) present 317-0367-COM requires Naomi-based hopper controller |
| 459 | Shootout Pool Prize / The Medal Ver. B 840-0136C 24148 4 (64Mb) present 317-0367-COM requires Naomi-based or 837-14438 hopper controller |
| 457 | 460 | SWP Hopper Board 840-0130C 24083 20 (64Mb) present 317-0339-COM Maskroms are not really used, they are recycled from other games; there is an additional 837-14381 IO board |
| 458 | | Touch de UNO! 2 840-0022C 23071 6 (64Mb) present 317-0276-JPN |
| 461 | Touch de UNO! 2 840-0022C 23071 6 (64Mb) present 317-0276-JPN requires special JVS board with touch input and printer |
| 459 | 462 | Virtua Fighter 4 Evolution 840-0106B 23934 20 (64Mb) present 317-0339-COM |
| 460 | 463 | Virtua Tennis 2 / Power Smash 2 (Rev A) 840-0084C 22327A 18 (64Mb) present 317-0320-COM |
| 461 | 464 | |
| r241903 | r241904 | |
| 502 | 505 | Club Kart: European Session 840-0062C 23704 11 (128Mb) 315-6319A 315-6213 317-0313-COM |
| 503 | 506 | Club Kart: European Session (Rev C) 840-0062C * 11 (128Mb) 315-6319A 315-6213 317-0313-COM * EPR have handwritten Japanese label possibly readable as 'teteto 74 lcl' |
| 504 | 507 | Club Kart: European Session (Rev D) 840-0062C 23704D 11 (128Mb) 315-6319A 315-6213 317-0313-COM |
| 505 | | Crackin' DJ 840-0043C 23450 10 (128Mb) 315-6319 315-6213 317-0288-COM |
| 508 | Crackin' DJ 840-0043C 23450 10 (128Mb) 315-6319 315-6213 317-0288-COM requires regular 837-13551 and 837-13938 rotary JVS boards, and turntable simulation |
| 506 | 509 | Derby Owners Club II (Rev B) 840-0083C 22306B 11 (128Mb) 315-6319A 315-6213 not present |
| 507 | 510 | Derby Owners Club World Edition (Rev C) 840-0088C 22336C 7 (128Mb) 315-6319A 315-6213 not present |
| 508 | 511 | Derby Owners Club World Edition (Rev D) 840-0088C 22336D 7 (128Mb) 315-6319A 315-6213 not present 2 MaskROM are different from Rev C |
| 509 | 512 | Giga Wing 2 841-0014C 22270 5 (128Mb) 315-6319A 315-6213 317-5064-COM |
| 510 | 513 | Mobile Suit Gundam: Federation Vs. Zeon 841-0017C 23638 10 (128Mb) 315-6319A 315-6213 ? |
| 511 | 514 | Moero Justice Gakuen / Project Justice (Rev A) 841-0015C 23548A 11 (128Mb) 315-6319A 315-6213 317-5065-COM |
| 512 | | MushiKing - The King Of Beetle 2K5 1ST 840-0158C 24286 7 (128Mb) 315-6319A 315-6213 not present |
| 513 | | Oinori-daimyoujin Matsuri 840-0126B 24053 5 (128Mb) 315-6319A 315-6213 not present |
| 515 | MushiKing - The King Of Beetle 2K5 1ST 840-0158C 24286 7 (128Mb) 315-6319A 315-6213 not present requires 610-0669 barcode reader |
| 516 | Oinori-daimyoujin Matsuri 840-0126B 24053 5 (128Mb) 315-6319A 315-6213 not present requires 837-14274 "G2 EXPANSION BD" (similar to hopper 837-14381 but with ARC NET chip) |
| 514 | 517 | Samba de Amigo Ver. 2000 840-0047C 23600 11 (128Mb) 315-6319A 315-6213 317-0295-COM |
| 515 | 518 | Star Horse (big screens) 840-0054C 23625 4 (128Mb) 315-6319 315-6213 not present |
| 516 | 519 | Star Horse (client) 840-0056C 23627 6 (128Mb)* 315-6319 315-6213 not present * +1 (64Mb) |
| r241903 | r241904 | |
| 566 | 569 | Dynamite Deka EX / Asian Dynamite 840-0175C not present 4 (512Mb) present 317-0495-COM present IC2# is labeled "VER.2" |
| 567 | 570 | Illmatic Envelope 841-0059C not present 4 (512Mb) present 317-5131-JPN present IC2# is labeled "VER.2" - IC#11 is empty |
| 568 | 571 | Mamoru-kun wa Norowarete Shimatta 841-0060C not present 4 (512Mb) present 317-5132-JPN present IC2# is labeled "VER.2" |
| 569 | | Manic Panic Ghost! 840-0170C not present 5 (512Mb) present 317-0461-COM present |
| 572 | Manic Panic Ghost! 840-0170C not present 5 (512Mb) present 317-0461-COM present requires 837-14672 sensor board (SH4 based) |
| 570 | 573 | Melty Blood Actress Again 841-0061C not present 6 (512Mb) present 317-5133-JPN present IC2# is labeled "REV.A" - IC4# is marked "5A" |
| 571 | 574 | Melty Blood Actress Again (Rev A) 841-0061C 24455 6 (512Mb) present 317-5133-JPN present IC2# is labeled "REV.A" - IC4# is marked "5A" |
| 572 | | Mushiking - The King Of Beetles II ENG (Ver. 1.001) 840-0164C not present 2 (512Mb) present 317-0437-COM present |
| 575 | Mushiking - The King Of Beetles II ENG (Ver. 1.001) 840-0164C not present 2 (512Mb) present 317-0437-COM present requires 610-0669 barcode reader, 838-14245-92 "MAPLE/232C CONVERT BD" (MIE-based), 838-14243 "RFID CHIP R/W BD" and RFID chip |
| 573 | 576 | Mushiking - The King Of Beetles II ENG (Ver. 2.001) 840-0164C 24357 2 (512Mb) present 317-0437-COM present IC4# is marked "18" |
| 574 | | Poka Suka Ghost 840-0170C not present 5 (512Mb) present 317-0461-COM present |
| 577 | Poka Suka Ghost 840-0170C not present 5 (512Mb) present 317-0461-COM present requires 837-14672 sensor board (SH4 based) |
| 575 | 578 | Radirgy Noa 841-0062C not present 4 (512Mb) present 317-5138-JPN present IC2# is labeled "VER.2" - IC4# is marked "8A" |
| 576 | 579 | Rythm Tengoku 841-0177C not present 4 (512Mb) present 317-0503-JPN present IC2# is labeled "VER.2" - IC4# is marked "8A" |
| 577 | 580 | Shooting Love 2007 841-0057C not present 4 (512Mb) present 317-5129-JPN present IC2# is labeled "VER.2" |
| 578 | | Touch De Zunou (Rev A) 840-0166C not present 2 (512Mb) present 317-0435-JPN present IC4# is marked "18" |
| 581 | Touch De Zunou (Rev A) 840-0166C not present 2 (512Mb) present 317-0435-JPN present IC4# is marked "18", requires 837-14672 sensor board (SH4 based) |
| 579 | 582 | |
| 580 | 583 | |
| 581 | 584 | |
| r241903 | r241904 | |
| 624 | 627 | Game Type on cart FLASHROM # of SOP48 IC @ 1F IC @ 1H IC @ 2K IC @ 1M code (1) Notes |
| 625 | 628 | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
| 626 | 629 | /Gun Survivor 2 Biohazard |
| 627 | | \Code: Veronica F1X 25709801 1 (64Mb) 14 (128Mb) not present NAODEC2A NAODEC1B 317-5075-COM BHF1 |
| 630 | \Code: Veronica F1X 25709801 1 (64Mb) 14 (128Mb) not present NAODEC2A NAODEC1B 317-5075-COM BHF1 uses Namco FCA JVS I/O, will crash if COMM.BOARD not present |
| 628 | 631 | /Gun Survivor 2 Biohazard |
| 629 | 632 | \Code: Veronica (Ver. E) F1X 25709801 1 (64Mb) 14 (128Mb) not present NAODEC2A NAODEC1B 317-5075-COM BHF2 |
| 630 | 633 | /Shin Nihon Prowrestling Toukon /FL0 & FL1 have pin55 raised from PCB. |
| 631 | 634 | \Retsuden 4 Arcade Edition (Ver. A) F2X 25349801 2 (64Mb) 15 (128Mb) not present NAODEC2A NAODEC1B 317-5040-COM TRF1 \They are connected togheter and go to pin89 on 2K. |
| 632 | | World Kicks PCB (WKC1 Ver. A) F2 25509801 2 (64Mb) 9 (128Mb) not present NAODEC2A NAODEC1B 317-5040-COM WKC1 |
| 635 | World Kicks PCB (WKC1 Ver. A) F2 25509801 2 (64Mb) 9 (128Mb) not present NAODEC2A NAODEC1B 317-5040-COM WKC1 uses Namco V226 JVS I/O |
| 633 | 636 | World Kicks (WK2 Ver. A) F2 25209801 2 (64Mb) 9 (128Mb) not present NAODEC2A NAODEC1A 317-5040-COM WK2 |
| 634 | 637 | World Kicks (WK3 Ver. A) F2 25209801 2 (64Mb) 9 (128Mb) not present NAODEC2A NAODEC1A 317-5040-COM WK3 |
| 635 | 638 | |
| r241903 | r241904 | |
| 677 | 680 | Cart Sticker FL0-FL3 FLASHROMs X76F100 CY37128 315-5881 Known Game |
| 678 | 681 | Game Type on cart FLASHROM # of SOP48 IC @ 1F IC @ 2J IC @ 1M code (1) Notes |
| 679 | 682 | -------------------------------------------------------------------------------------------------------------------------------- |
| 680 | | Mazan: Flash of the Blade (Ver. A) F1X 25869812 1 (64Mb) 8 (128Mb) present NAODEC3 317-0266-COM MAZ2 |
| 683 | Mazan: Flash of the Blade (Ver. A) F1X 25869812 1 (64Mb) 8 (128Mb) present NAODEC3 317-0266-COM MAZ2 uses 2x Namco FCB JVS I/O |
| 681 | 684 | Mazan: Flash of the Blade (Ver. A) F1X 25869812 1 (64Mb) 8 (128Mb) present NAODEC3 317-0266-COM MAZ3 |
| 682 | | Ninja Assault (Ver. A) F3 25469801 3 (64Mb) 9 (128Mb) present NAODEC3 317-5068-COM NJA1 |
| 685 | Ninja Assault (Ver. A) F3 25469801 3 (64Mb) 9 (128Mb) present NAODEC3 317-5068-COM NJA1 uses Namco JYU JVS I/O |
| 683 | 686 | Ninja Assault (Ver. A) F3 25469801 3 (64Mb) 9 (128Mb) present NAODEC3 317-5068-COM NJA2 |
| 684 | 687 | Ninja Assault (Ver. A) F3 25469801 3 (64Mb) 9 (128Mb) present NAODEC3 317-5068-COM NJA3 |
| 685 | 688 | Ninja Assault (Ver. A) F3 25469801 3 (64Mb) 9 (128Mb) present NAODEC3 317-5068-COM NJA4 |
| r241903 | r241904 | |
| 2776 | 2779 | |
| 2777 | 2780 | Ferrari F355 specific Naomi BIOS roms: |
| 2778 | 2781 | |
| 2782 | EPR-21863 - NAOMI BOOT ROM 1999 07/02 1.34 (USA) |
| 2779 | 2783 | EPR-22850 - NAOMI BOOT ROM 1999 08/30 1.35 (USA) |
| 2780 | 2784 | EPR-22851 - NAOMI BOOT ROM 1999 08/30 1.35 (Export) |
| 2781 | 2785 | |
| r241903 | r241904 | |
| 2864 | 2868 | ROM_SYSTEM_BIOS( 2, "bios2", "HOTD2 (Proto)" ) \ |
| 2865 | 2869 | ROM_LOAD16_WORD_SWAP_BIOS( 2, "hotd2biosproto.ic27", 0x000000, 0x200000, CRC(ea74e967) SHA1(e4d037480eb6555d335a8ab9cd6c56122335586d) ) |
| 2866 | 2870 | |
| 2871 | #define F355DLX_BIOS \ |
| 2872 | ROM_REGION( 0x200000, "maincpu", 0) \ |
| 2873 | ROM_SYSTEM_BIOS( 0, "bios0", "Ferrari F355 Deluxe (USA)" ) \ |
| 2874 | ROM_LOAD16_WORD_SWAP_BIOS( 0, "epr-21863.ic27", 0x000000, 0x200000, CRC(0615a4d1) SHA1(2c6986580b84278af75f396229fdd587bebc1768) ) |
| 2875 | |
| 2867 | 2876 | #define F355_BIOS \ |
| 2868 | 2877 | ROM_REGION( 0x200000, "maincpu", 0) \ |
| 2869 | 2878 | ROM_SYSTEM_BIOS( 0, "bios0", "Ferrari F355 (Export)" ) \ |
| r241903 | r241904 | |
| 3001 | 3010 | ROM_REGION( 0x8400000, "rom_board", ROMREGION_ERASE) |
| 3002 | 3011 | ROM_END |
| 3003 | 3012 | |
| 3013 | ROM_START( f355dlx ) |
| 3014 | F355DLX_BIOS |
| 3015 | NAOMI_DEFAULT_EEPROM |
| 3016 | |
| 3017 | ROM_REGION( 0x8400000, "rom_board", ROMREGION_ERASE) |
| 3018 | ROM_END |
| 3019 | |
| 3004 | 3020 | ROM_START( f355bios ) |
| 3005 | 3021 | F355_BIOS |
| 3006 | 3022 | NAOMI_DEFAULT_EEPROM |
| r241903 | r241904 | |
| 3700 | 3716 | */ |
| 3701 | 3717 | |
| 3702 | 3718 | ROM_START( f355 ) |
| 3703 | | F355_BIOS /* note: require (undumped) special BIOS, game not compatible with EPR-22850/EPR-22851 from twin-versions */ |
| 3719 | F355DLX_BIOS |
| 3704 | 3720 | NAOMI_DEFAULT_EEPROM |
| 3705 | 3721 | |
| 3706 | 3722 | ROM_REGION( 0xb000000, "rom_board", ROMREGION_ERASEFF) |
| r241903 | r241904 | |
| 5165 | 5181 | ROM_REGION( 4, "rom_key", ROMREGION_ERASE00 ) |
| 5166 | 5182 | ROM_END |
| 5167 | 5183 | |
| 5168 | | /* |
| 5184 | // Shootout Pool |
| 5185 | ROM_START( shootopl ) |
| 5186 | NAOMI_BIOS |
| 5187 | NAOMI_DEFAULT_EEPROM |
| 5169 | 5188 | |
| 5170 | | SYSTEMID: NAOMI |
| 5171 | | JAP: SHOOTOUT POOL |
| 5172 | | USA: SHOOTOUT POOL |
| 5173 | | EXP: SHOOTOUT POOL PRIZE |
| 5189 | ROM_REGION( 0x3000000, "rom_board", ROMREGION_ERASEFF) |
| 5190 | ROM_LOAD( "epr-23844.ic11", 0x000000, 0x400000, CRC(5c229638) SHA1(9185f9f2369bb2423faff4222419001ac9037d3f) ) |
| 5191 | ROM_LOAD32_WORD( "mtp-23840.ic17s", 0x1000000, 0x800000, CRC(985e5ff4) SHA1(a6f529b1855cc2aef3bed8503746c2e38061f944) ) |
| 5192 | ROM_LOAD32_WORD( "mtp-23841.ic18", 0x1000002, 0x800000, CRC(255fc335) SHA1(34ffec963880383bb9c02642f73ba3c852699831) ) |
| 5193 | ROM_LOAD32_WORD( "mtp-23842.ic19s", 0x2000000, 0x800000, CRC(80724895) SHA1(ed4fa1160b35b3987702c0178bd31c3c5db69e6e) ) |
| 5194 | ROM_LOAD32_WORD( "mtp-23843.ic20", 0x2000002, 0x800000, CRC(3574f616) SHA1(40130e8f98fb31c98428d444b79491f6a06ac208) ) |
| 5174 | 5195 | |
| 5175 | | */ |
| 5196 | ROM_COPY( "rom_board", 0x1000000, 0x400000, 0xc00000 ) |
| 5176 | 5197 | |
| 5198 | ROM_REGION( 4, "rom_key", 0 ) |
| 5199 | ROM_LOAD( "shootopl-key.bin", 0, 4, CRC(45547e02) SHA1(4f79f478ff1eea14bc939a67ff570143cb56a4bf) ) |
| 5200 | ROM_END |
| 5201 | |
| 5202 | // Shootout Pool Prize |
| 5177 | 5203 | ROM_START( shootpl ) |
| 5178 | 5204 | NAOMI_BIOS |
| 5179 | 5205 | NAOMI_DEFAULT_EEPROM |
| r241903 | r241904 | |
| 5191 | 5217 | ROM_LOAD( "shootpl-key.bin", 0, 4, CRC(03c30b17) SHA1(e8e8659aa27b3d1cac2268850d3973d9afeaeba9) ) |
| 5192 | 5218 | ROM_END |
| 5193 | 5219 | |
| 5194 | | // SHOOTOUT POOL (the original, the above set is a sequel) |
| 5195 | | ROM_START( shootopl ) |
| 5196 | | NAOMI_BIOS |
| 5197 | | NAOMI_DEFAULT_EEPROM |
| 5198 | | |
| 5199 | | ROM_REGION( 0x3000000, "rom_board", ROMREGION_ERASEFF) |
| 5200 | | ROM_LOAD( "epr-23844.ic11", 0x000000, 0x400000, CRC(5c229638) SHA1(9185f9f2369bb2423faff4222419001ac9037d3f) ) |
| 5201 | | ROM_LOAD32_WORD( "mtp-23840.ic17s", 0x1000000, 0x800000, CRC(985e5ff4) SHA1(a6f529b1855cc2aef3bed8503746c2e38061f944) ) |
| 5202 | | ROM_LOAD32_WORD( "mtp-23841.ic18", 0x1000002, 0x800000, CRC(255fc335) SHA1(34ffec963880383bb9c02642f73ba3c852699831) ) |
| 5203 | | ROM_LOAD32_WORD( "mtp-23842.ic19s", 0x2000000, 0x800000, CRC(80724895) SHA1(ed4fa1160b35b3987702c0178bd31c3c5db69e6e) ) |
| 5204 | | ROM_LOAD32_WORD( "mtp-23843.ic20", 0x2000002, 0x800000, CRC(3574f616) SHA1(40130e8f98fb31c98428d444b79491f6a06ac208) ) |
| 5205 | | |
| 5206 | | ROM_COPY( "rom_board", 0x1000000, 0x400000, 0xc00000 ) |
| 5207 | | |
| 5208 | | ROM_REGION( 4, "rom_key", 0 ) |
| 5209 | | ROM_LOAD( "shootopl-key.bin", 0, 4, CRC(45547e02) SHA1(4f79f478ff1eea14bc939a67ff570143cb56a4bf) ) |
| 5210 | | ROM_END |
| 5211 | | |
| 5212 | | /* Shootout Pool Medal */ |
| 5220 | // Shootout Pool Prize Ver. B |
| 5213 | 5221 | ROM_START( shootplm ) |
| 5214 | 5222 | NAOMI_BIOS |
| 5215 | 5223 | NAOMI_DEFAULT_EEPROM |
| r241903 | r241904 | |
| 8846 | 8854 | /* Main board and game specific BIOS */ |
| 8847 | 8855 | /* Naomi */ GAME( 1998, naomi, 0, naomi, naomi, naomi_state, naomi, ROT0, "Sega", "Naomi Bios", GAME_FLAGS|GAME_IS_BIOS_ROOT ) |
| 8848 | 8856 | /* game */ GAME( 1998, hod2bios, 0, naomi, naomi, driver_device, 0, ROT0, "Sega", "Naomi House of the Dead 2 Bios", GAME_FLAGS|GAME_IS_BIOS_ROOT ) |
| 8849 | | /* game */ GAME( 1999, f355bios, 0, naomi, naomi, driver_device, 0, ROT0, "Sega", "Naomi Ferrari F355 Challenge Bios", GAME_FLAGS|GAME_IS_BIOS_ROOT ) |
| 8857 | /* game */ GAME( 1999, f355dlx, 0, naomi, naomi, driver_device, 0, ROT0, "Sega", "Naomi Ferrari F355 Challenge (deluxe) Bios", GAME_FLAGS|GAME_IS_BIOS_ROOT ) |
| 8858 | /* game */ GAME( 1999, f355bios, 0, naomi, naomi, driver_device, 0, ROT0, "Sega", "Naomi Ferrari F355 Challenge (twin) Bios", GAME_FLAGS|GAME_IS_BIOS_ROOT ) |
| 8850 | 8859 | /* game */ GAME( 1999, airlbios, 0, naomi, naomi, driver_device, 0, ROT0, "Sega", "Naomi Airline Pilots (deluxe) Bios", GAME_FLAGS|GAME_IS_BIOS_ROOT ) |
| 8851 | 8860 | /* Naomi2*/ GAME( 2001, naomi2, 0, naomi, naomi, driver_device, 0, ROT0, "Sega", "Naomi 2 Bios", GAME_FLAGS|GAME_IS_BIOS_ROOT ) |
| 8852 | 8861 | /* GDROM */ GAME( 2001, naomigd, 0, naomi, naomi, naomi_state, naomi, ROT0, "Sega", "Naomi GD-ROM Bios", GAME_FLAGS|GAME_IS_BIOS_ROOT ) |
| r241903 | r241904 | |
| 8854 | 8863 | /* 834-xxxxx (Sega Naomi cart with game specific BIOS sets) */ |
| 8855 | 8864 | /* 13636-01 */ GAME( 1998, hotd2, hod2bios, naomim2, hotd2, naomi_state, hotd2, ROT0, "Sega", "House of the Dead 2", GAME_FLAGS ) /* specific BIOS "hod2bios" needed */ |
| 8856 | 8865 | /* 13636 */ GAME( 1998, hotd2o, hotd2, naomim2, hotd2, naomi_state, hotd2, ROT0, "Sega", "House of the Dead 2 (original)", GAME_FLAGS ) /* specific BIOS "hod2bios" needed */ |
| 8857 | | /* 13636? */ GAME( 1998, hotd2p, hotd2, naomim2, hotd2, naomi_state, hotd2, ROT0, "Sega", "House of the Dead 2 (prototype)", GAME_FLAGS ) /* specific BIOS "hod2bios" needed */ |
| 8858 | | /* 13842 */ GAME( 1999, f355, f355bios, naomim2, naomi, driver_device, 0, ROT0, "Sega", "Ferrari F355 Challenge", GAME_FLAGS ) /* specific BIOS "f355bios" needed */ |
| 8866 | /* none */ GAME( 1998, hotd2p, hotd2, naomim2, hotd2, naomi_state, hotd2, ROT0, "Sega", "House of the Dead 2 (prototype)", GAME_FLAGS ) /* specific BIOS "hod2bios" needed */ |
| 8867 | /* 13842 */ GAME( 1999, f355, f355dlx, naomim2, naomi, driver_device, 0, ROT0, "Sega", "Ferrari F355 Challenge (deluxe)", GAME_FLAGS ) /* specific BIOS "f355dlx" needed */ |
| 8859 | 8868 | /* 13950 */ GAME( 1999, f355twin, f355bios, naomim2, naomi, driver_device, 0, ROT0, "Sega", "Ferrari F355 Challenge (twin)", GAME_FLAGS ) /* specific BIOS "f355bios" needed */ |
| 8860 | 8869 | /* ????? */ GAME( 2001, f355twn2, f355bios, naomim2, naomi, driver_device, 0, ROT0, "Sega", "Ferrari F355 Challenge 2 (twin)", GAME_FLAGS ) /* specific BIOS "f355bios" needed */ |
| 8861 | 8870 | /* ????? */ GAME( 1999, alpiltdx, airlbios, naomim2, naomi, driver_device, 0, ROT0, "Sega", "Airline Pilots (deluxe) (Rev B)", GAME_FLAGS ) /* specific BIOS "airlbios" needed */ |
| r241903 | r241904 | |
| 8878 | 8887 | /* 0018 */ GAME( 1999, sgtetris, naomi, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Sega Tetris", GAME_FLAGS ) |
| 8879 | 8888 | /* 0019 */ GAME( 1999, dybb99, naomi, naomim2, dybbnao, naomi_state, naomi, ROT0, "Sega", "Dynamite Baseball '99 (JPN) / World Series '99 (USA, EXP, KOR, AUS) (Rev B)", GAME_FLAGS ) |
| 8880 | 8889 | /* 0020 */ GAME( 1999, samba, naomi, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Samba De Amigo (JPN) (Rev B)", GAME_FLAGS ) |
| 8881 | | /* 0020? */GAME( 1999, sambap, samba, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Samba De Amigo (prototype)", GAME_FLAGS ) |
| 8882 | | /* 0021 */ GAME( 2000, virnbap, virnba, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Virtua NBA (prototype)", GAME_FLAGS ) |
| 8890 | /* none */ GAME( 1999, sambap, samba, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Samba De Amigo (prototype)", GAME_FLAGS ) |
| 8891 | /* none */ GAME( 2000, virnbap, virnba, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Virtua NBA (prototype)", GAME_FLAGS ) |
| 8883 | 8892 | /* 0021 */ GAME( 2000, virnbao, virnba, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Virtua NBA (JPN, USA, EXP, KOR, AUS) (original)", GAME_FLAGS ) |
| 8884 | 8893 | /* 0021-01*/GAME( 2000,virnba, naomi, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Virtua NBA (JPN, USA, EXP, KOR, AUS)", GAME_FLAGS ) |
| 8885 | 8894 | /* 0022 */ GAME( 2000, tduno2, naomi, naomim1, naomi, naomi_state, naomi, ROT0, "Sega", "Touch de Uno! 2", GAME_FLAGS ) |
| r241903 | r241904 | |
| 8914 | 8923 | /* 0088 */ GAME( 2001, derbyocw, naomi, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Derby Owners Club World Edition (JPN, USA, EXP, KOR, AUS) (Rev D)", GAME_FLAGS ) |
| 8915 | 8924 | /* 0088 */ GAME( 2001, drbyocwc, derbyocw, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Derby Owners Club World Edition (JPN, USA, EXP, KOR, AUS) (Rev C)", GAME_FLAGS ) |
| 8916 | 8925 | /* 0098 */ GAME( 2002, shootopl, naomi, naomim1, naomi, naomi_state, naomi, ROT0, "Sega", "Shootout Pool", GAME_FLAGS ) |
| 8917 | | /* 0123 */ GAME( 2001, starhrsp, naomi, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Star Horse Progress (Rev A)", GAME_FLAGS ) |
| 8926 | /* 0123 */ GAME( 2003, starhrsp, naomi, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Star Horse Progress (Rev A)", GAME_FLAGS ) |
| 8918 | 8927 | /* 0126 */ GAME( 2003, oinori, naomi, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Oinori-daimyoujin Matsuri", GAME_FLAGS ) |
| 8919 | | /* 0128 */ GAME( 2002, shootpl, naomi, naomim1, naomi, naomi_state, naomi, ROT0, "Sega", "Shootout Pool (JPN, USA, KOR, AUS) / Shootout Pool Prize (EXP) (Rev A)", GAME_FLAGS ) |
| 8928 | /* 0128 */ GAME( 2003, shootpl, naomi, naomim1, naomi, naomi_state, naomi, ROT0, "Sega", "Shootout Pool The Medal / Shootout Pool Prize (Rev A)", GAME_FLAGS ) |
| 8920 | 8929 | /* 0130 */ GAME( 2002, hopper, naomi, naomi, naomi, naomi_state, naomi, ROT0, "Sega", "SWP Hopper Board", GAME_FLAGS ) |
| 8921 | | /* 0136 */ GAME( 2001, shootplm, naomi, naomim1, naomi, naomi_state, naomi, ROT0, "Sega", "Shootout Pool Medal", GAME_FLAGS ) |
| 8930 | /* 0136 */ GAME( 2004, shootplm, naomi, naomim1, naomi, naomi_state, naomi, ROT0, "Sega", "Shootout Pool The Medal Ver. B / Shootout Pool Prize Ver. B", GAME_FLAGS ) |
| 8922 | 8931 | /* 0140 */ GAME( 2004, kick4csh, naomi, naomim1, naomi, naomi_state, kick4csh,ROT0, "Sega", "Kick '4' Cash", GAME_FLAGS ) |
| 8923 | 8932 | /* 0150 */ GAME( 2003, mtkob2, naomi, naomim1, naomi, naomi_state, naomi, ROT0, "Sega", "Mushiking The King Of Beetle 2K3 2nd", GAME_FLAGS ) |
| 8924 | 8933 | /* 0158 */ GAME( 2005, mushi2k5, naomi, naomim2, naomi, naomi_state, naomi, ROT0, "Sega", "Mushiking The King Of Beetle 2K5 1st", GAME_FLAGS ) |
| r241903 | r241904 | |
| 8929 | 8938 | /* 0170 */ GAME( 2007, pokasuka, manicpnc, naomim4, naomi, naomi_state, naomi, ROT0, "Sega", "Pokasuka Ghost", GAME_FLAGS ) |
| 8930 | 8939 | /* 0175 */ GAME( 2007, asndynmt, naomi, naomim4, naomi, naomi_state, naomi, ROT0, "Sega", "Asian Dynamite", GAME_FLAGS ) |
| 8931 | 8940 | /* 0177 */ GAME( 2007, rhytngk, naomi, naomim4, naomi, naomi_state, naomi, ROT0, "Sega/Nintendo", "Rhythm Tengoku", GAME_FLAGS ) |
| 8941 | // 01?? Star Horse Progress Returns |
| 8932 | 8942 | // 00xx Mayjinsen (Formation Battle in May) - prototype, never released |
| 8933 | 8943 | |
| 8934 | 8944 | /* Cartridge prototypes of games released on GD-ROM */ |
| r241903 | r241904 | |
| 8950 | 8960 | /* 0137 */ GAME( 2004, clubkpzb, naomi2, naomi2m1, naomi, naomi_state, naomi2, ROT0, "Sega", "Club Kart Prize Ver. B", GAME_FLAGS ) |
| 8951 | 8961 | // needs verification is this dump really from 840-0139C cart |
| 8952 | 8962 | /* 0139 */ GAME( 2003, clubk2k3, naomi2, naomi2m1, naomi, naomi_state, naomi2, ROT0, "Sega", "Club Kart: European Session (2003)", GAME_FLAGS ) |
| 8953 | | /* ??? */ GAME( 2003, clubk2kp, clubk2k3,naomi2, naomi, naomi_state, naomi2, ROT0, "Sega", "Club Kart: European Session (2003, prototype)", GAME_FLAGS ) |
| 8963 | /* none */ GAME( 2003, clubk2kp, clubk2k3,naomi2, naomi, naomi_state, naomi2, ROT0, "Sega", "Club Kart: European Session (2003, prototype)", GAME_FLAGS ) |
| 8954 | 8964 | |
| 8955 | 8965 | /* 841-xxxxx ("Licensed by Sega" Naomi cart games)*/ |
| 8956 | 8966 | /* 0001 */ GAME( 1999, pstone, naomi, naomim2, naomi, naomi_state, naomi, ROT0, "Capcom", "Power Stone (JPN, USA, EUR, ASI, AUS)", GAME_FLAGS ) |