trunk/src/mess/drivers/apple2gs.c
| r26523 | r26524 | |
| 511 | 511 | ROM_REGION(0x20000, "es5503", ROMREGION_ERASE00) |
| 512 | 512 | ROM_END |
| 513 | 513 | |
| 514 | ROM_START(apple2gsr0p) // 6/19/1986 Cortland prototype |
| 515 | ROM_REGION(0xc00,"m50740",0) |
| 516 | ROM_LOAD( "341s0345.bin", 0x000000, 0x000c00, CRC(48cd5779) SHA1(97e421f5247c00a0ca34cd08b6209df573101480) ) |
| 517 | |
| 518 | ROM_REGION(0x400, "kmcu", 0) |
| 519 | ROM_LOAD( "341-0232a.bin", 0x000000, 0x000400, CRC(6a158b9f) SHA1(e8744180075182849d431fd8023a52a062a6da76) ) |
| 520 | ROM_LOAD( "341-0124a.bin", 0x000000, 0x000400, CRC(2a3576bf) SHA1(58fbf770d3801a02d0944039829f9241b5279013) ) |
| 521 | |
| 522 | ROM_REGION(0x1000,"gfx1",0) |
| 523 | ROM_LOAD ( "apple2gs.chr", 0x0000, 0x1000, CRC(91e53cd8) SHA1(34e2443e2ef960a36c047a09ed5a93f471797f89)) |
| 524 | |
| 525 | ROM_REGION(0x20000,"maincpu",0) |
| 526 | ROM_LOAD( "rombf.bin", 0x000000, 0x020000, CRC(ab04fedf) SHA1(977589a17553956d583a21020080a39dd396df5c) ) |
| 527 | |
| 528 | ROM_REGION(0x20000, "es5503", ROMREGION_ERASE00) |
| 529 | ROM_END |
| 530 | |
| 514 | 531 | /* YEAR NAME PARENT COMPAT MACHINE INPUT INIT COMPANY FULLNAME */ |
| 515 | 532 | COMP( 1989, apple2gs, 0, apple2, apple2gs, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM03)", GAME_SUPPORTS_SAVE ) |
| 516 | 533 | COMP( 198?, apple2gsr3p, apple2gs, 0, apple2gs, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM03 prototype)", GAME_NOT_WORKING ) |
| 517 | 534 | COMP( 1989, apple2gsr3lp, apple2gs, 0, apple2gs, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM03 late prototype?)", GAME_NOT_WORKING ) |
| 518 | 535 | COMP( 1987, apple2gsr1, apple2gs, 0, apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM01)", GAME_SUPPORTS_SAVE ) |
| 519 | 536 | COMP( 1986, apple2gsr0, apple2gs, 0, apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM00)", GAME_SUPPORTS_SAVE ) |
| 537 | COMP( 1986, apple2gsr0p,apple2gs, 0, apple2gsr1, apple2gs, driver_device, 0, "Apple Computer", "Apple IIgs (ROM00 prototype 6/19/1986)", GAME_SUPPORTS_SAVE ) |
| 538 | |