/*************************************************************************** Atari Rampart hardware driver by Aaron Giles Games supported: * Rampart (1990) [3 sets] Known bugs: * P3 trackball doesn't work, maybe it needs some kind of fake input port Note: P3 buttons 1 and 2 are mapped twice. THIS IS NOT A BUG! **************************************************************************** Memory map (TBA) ***************************************************************************/ #include "driver.h" #include "machine/atarigen.h" #include "rampart.h" #include "sound/okim6295.h" #include "sound/2413intf.h" /************************************* * * Interrupt handling * *************************************/ static void update_interrupts(void) { int newstate = 0; if (atarigen_scanline_int_state) newstate = 4; if (newstate) cpunum_set_input_line(0, newstate, ASSERT_LINE); else cpunum_set_input_line(0, 7, CLEAR_LINE); } static void scanline_update(running_machine *machine, int scrnum, int scanline) { /* generate 32V signals */ if ((scanline & 32) == 0) atarigen_scanline_int_gen(); } /************************************* * * Initialization * *************************************/ static MACHINE_RESET( rampart ) { atarigen_eeprom_reset(); atarigen_slapstic_reset(); atarigen_interrupt_reset(update_interrupts); atarigen_scanline_timer_reset(0, scanline_update, 32); } /************************************* * * MSM5295 I/O * *************************************/ static READ16_HANDLER( adpcm_r ) { return (OKIM6295_status_0_r(offset) << 8) | 0x00ff; } static WRITE16_HANDLER( adpcm_w ) { if (ACCESSING_MSB) OKIM6295_data_0_w(offset, (data >> 8) & 0xff); } /************************************* * * YM2413 I/O * *************************************/ static WRITE16_HANDLER( ym2413_w ) { if (ACCESSING_MSB) { if (offset & 1) YM2413_data_port_0_w(0, (data >> 8) & 0xff); else YM2413_register_port_0_w(0, (data >> 8) & 0xff); } } /************************************* * * Latch write * *************************************/ static WRITE16_HANDLER( latch_w ) { /* bit layout in this register: 0x8000 == VCR ??? 0x2000 == LETAMODE1 (controls right trackball) 0x1000 == CBANK (color bank -- is it ever set to non-zero?) 0x0800 == LETAMODE0 (controls center and left trackballs) 0x0400 == LETARES (reset LETA analog control reader) 0x0020 == PMIX0 (ADPCM mixer level) 0x0010 == /PCMRES (ADPCM reset) 0x000E == YMIX2-0 (YM2413 mixer level) 0x0001 == /YAMRES (YM2413 reset) */ /* upper byte being modified? */ if (ACCESSING_MSB) { if (data & 0x1000) logerror("Color bank set to 1!\n"); } /* lower byte being modified? */ if (ACCESSING_LSB) { atarigen_set_ym2413_vol(Machine, ((data >> 1) & 7) * 100 / 7); atarigen_set_oki6295_vol(Machine, (data & 0x0020) ? 100 : 0); } } /************************************* * * Main CPU memory handlers * *************************************/ static ADDRESS_MAP_START( main_readmem, ADDRESS_SPACE_PROGRAM, 16 ) AM_RANGE(0x000000, 0x0fffff) AM_READ(MRA16_ROM) AM_RANGE(0x140000, 0x147fff) AM_READ(MRA16_ROM) AM_RANGE(0x200000, 0x21ffff) AM_READ(MRA16_RAM) AM_RANGE(0x3c0000, 0x3c07ff) AM_READ(MRA16_RAM) AM_RANGE(0x3e0000, 0x3effff) AM_READ(MRA16_RAM) AM_RANGE(0x460000, 0x460001) AM_READ(adpcm_r) AM_RANGE(0x500000, 0x500fff) AM_READ(atarigen_eeprom_r) AM_RANGE(0x640000, 0x640001) AM_READ(input_port_0_word_r) AM_RANGE(0x640002, 0x640003) AM_READ(input_port_1_word_r) AM_RANGE(0x6c0000, 0x6c0001) AM_READ(input_port_2_word_r) AM_RANGE(0x6c0002, 0x6c0003) AM_READ(input_port_3_word_r) AM_RANGE(0x6c0004, 0x6c0005) AM_READ(input_port_4_word_r) AM_RANGE(0x6c0006, 0x6c0007) AM_READ(input_port_5_word_r) ADDRESS_MAP_END static ADDRESS_MAP_START( main_writemem, ADDRESS_SPACE_PROGRAM, 16 ) AM_RANGE(0x000000, 0x0fffff) AM_WRITE(MWA16_ROM) AM_RANGE(0x140000, 0x147fff) AM_WRITE(MWA16_ROM) AM_RANGE(0x200000, 0x21ffff) AM_WRITE(rampart_bitmap_w) AM_BASE(&rampart_bitmap) AM_RANGE(0x220000, 0x3bffff) AM_WRITE(MWA16_NOP) /* the code blasts right through this when initializing */ AM_RANGE(0x3c0000, 0x3c07ff) AM_WRITE(atarigen_expanded_666_paletteram_w) AM_BASE(&paletteram16) AM_RANGE(0x3c0800, 0x3dffff) AM_WRITE(MWA16_NOP) /* the code blasts right through this when initializing */ AM_RANGE(0x3e0000, 0x3e07ff) AM_WRITE(atarimo_0_spriteram_w) AM_BASE(&atarimo_0_spriteram) AM_RANGE(0x3e0800, 0x3e3f3f) AM_WRITE(MWA16_RAM) AM_RANGE(0x3e3f40, 0x3e3f7f) AM_WRITE(atarimo_0_slipram_w) AM_BASE(&atarimo_0_slipram) AM_RANGE(0x3e3f80, 0x3effff) AM_WRITE(MWA16_RAM) AM_RANGE(0x460000, 0x460001) AM_WRITE(adpcm_w) AM_RANGE(0x480000, 0x480003) AM_WRITE(ym2413_w) AM_RANGE(0x500000, 0x500fff) AM_WRITE(atarigen_eeprom_w) AM_BASE(&atarigen_eeprom) AM_SIZE(&atarigen_eeprom_size) AM_RANGE(0x5a0000, 0x5affff) AM_WRITE(atarigen_eeprom_enable_w) AM_RANGE(0x640000, 0x640001) AM_WRITE(latch_w) AM_RANGE(0x720000, 0x72ffff) AM_WRITE(watchdog_reset16_w) AM_RANGE(0x7e0000, 0x7effff) AM_WRITE(atarigen_scanline_int_ack_w) ADDRESS_MAP_END /************************************* * * Port definitions * *************************************/ INPUT_PORTS_START( rampart ) PORT_START PORT_BIT( 0x0001, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(3) // alternate button1 PORT_BIT( 0x0002, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(3) PORT_BIT( 0x0004, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x0008, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x00f0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x0100, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(2) PORT_BIT( 0x0200, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(2) PORT_BIT( 0x0400, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(3) PORT_BIT( 0x0800, IP_ACTIVE_HIGH, IPT_VBLANK ) PORT_BIT( 0xf000, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0x0001, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_BIT( 0x0002, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_BIT( 0x0004, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x00f8, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x0100, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(1) PORT_BIT( 0x0200, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(1) PORT_BIT( 0x0400, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(3) // alternate button2 PORT_SERVICE( 0x0800, IP_ACTIVE_LOW ) PORT_BIT( 0xf000, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0x00ff, 0, IPT_TRACKBALL_Y ) PORT_SENSITIVITY(100) PORT_KEYDELTA(30) PORT_REVERSE PORT_PLAYER(2) PORT_BIT( 0xff00, 0, IPT_TRACKBALL_Y ) PORT_SENSITIVITY(100) PORT_KEYDELTA(30) PORT_REVERSE PORT_PLAYER(3) PORT_START PORT_BIT( 0x00ff, 0, IPT_TRACKBALL_X ) PORT_SENSITIVITY(100) PORT_KEYDELTA(30) PORT_REVERSE PORT_PLAYER(2) PORT_BIT( 0xff00, 0, IPT_TRACKBALL_X ) PORT_SENSITIVITY(100) PORT_KEYDELTA(30) PORT_REVERSE PORT_PLAYER(3) PORT_START PORT_BIT( 0x00ff, 0, IPT_TRACKBALL_Y ) PORT_SENSITIVITY(100) PORT_KEYDELTA(30) PORT_REVERSE PORT_PLAYER(1) PORT_BIT( 0xff00, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0x00ff, 0, IPT_TRACKBALL_X ) PORT_SENSITIVITY(100) PORT_KEYDELTA(30) PORT_REVERSE PORT_PLAYER(1) PORT_BIT( 0xff00, IP_ACTIVE_LOW, IPT_UNUSED ) INPUT_PORTS_END INPUT_PORTS_START( ramprt2p ) PORT_START PORT_BIT( 0x0001, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(3) // alternate button1 PORT_BIT( 0x0002, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(3) PORT_DIPNAME( 0x0004, 0x0004, DEF_STR( Players ) ) PORT_DIPSETTING( 0x0000, "2") PORT_DIPSETTING( 0x0004, "3") PORT_BIT( 0x0008, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x00f0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x0100, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(2) PORT_BIT( 0x0200, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(2) PORT_BIT( 0x0400, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(3) PORT_BIT( 0x0800, IP_ACTIVE_HIGH, IPT_VBLANK ) PORT_BIT( 0xf000, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0x0001, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_BIT( 0x0002, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_BIT( 0x0004, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x00f8, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x0100, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(1) PORT_BIT( 0x0200, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(1) PORT_BIT( 0x0400, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(3) // alternate button2 PORT_SERVICE( 0x0800, IP_ACTIVE_LOW ) PORT_BIT( 0xf000, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0x0001, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_PLAYER(2) PORT_BIT( 0x0002, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(2) PORT_BIT( 0x0004, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_PLAYER(2) PORT_BIT( 0x0008, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_PLAYER(2) PORT_BIT( 0x0010, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_PLAYER(1) PORT_BIT( 0x0020, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(1) PORT_BIT( 0x0040, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_PLAYER(1) PORT_BIT( 0x0080, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_PLAYER(1) PORT_BIT( 0x0100, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_PLAYER(3) PORT_BIT( 0x0200, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(3) PORT_BIT( 0x0400, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_PLAYER(3) PORT_BIT( 0x0800, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_PLAYER(3) PORT_BIT( 0xf000, IP_ACTIVE_HIGH, IPT_UNUSED ) PORT_START PORT_BIT( 0xffff, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0xffff, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0xffff, IP_ACTIVE_LOW, IPT_UNUSED ) INPUT_PORTS_END INPUT_PORTS_START( rampartj ) PORT_START PORT_BIT( 0x0001, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x0002, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x0004, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x0008, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x00f0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x0100, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(2) PORT_BIT( 0x0200, IP_ACTIVE_LOW, IPT_START2 ) PORT_BIT( 0x0400, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(2) PORT_BIT( 0x0800, IP_ACTIVE_HIGH, IPT_VBLANK ) PORT_BIT( 0xf000, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0x0001, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_BIT( 0x0002, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_BIT( 0x0004, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x00f8, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x0100, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(1) PORT_BIT( 0x0200, IP_ACTIVE_LOW, IPT_START1 ) PORT_BIT( 0x0400, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(1) PORT_SERVICE( 0x0800, IP_ACTIVE_LOW ) PORT_BIT( 0xf000, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0x0001, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_PLAYER(2) PORT_BIT( 0x0002, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(2) PORT_BIT( 0x0004, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_PLAYER(2) PORT_BIT( 0x0008, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_PLAYER(2) PORT_BIT( 0x0010, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_PLAYER(1) PORT_BIT( 0x0020, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(1) PORT_BIT( 0x0040, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_PLAYER(1) PORT_BIT( 0x0080, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_PLAYER(1) PORT_BIT( 0x0100, IP_ACTIVE_HIGH, IPT_UNUSED ) PORT_BIT( 0x0200, IP_ACTIVE_HIGH, IPT_UNUSED ) PORT_BIT( 0x0400, IP_ACTIVE_HIGH, IPT_UNUSED ) PORT_BIT( 0x0800, IP_ACTIVE_HIGH, IPT_UNUSED ) PORT_BIT( 0xf000, IP_ACTIVE_HIGH, IPT_UNUSED ) PORT_START PORT_BIT( 0xffff, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0xffff, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START PORT_BIT( 0xffff, IP_ACTIVE_LOW, IPT_UNUSED ) INPUT_PORTS_END /************************************* * * Graphics definitions * *************************************/ static const gfx_layout molayout = { 8,8, RGN_FRAC(1,1), 4, { 0, 1, 2, 3 }, { 0, 4, 8, 12, 16, 20, 24, 28 }, { 0*8, 4*8, 8*8, 12*8, 16*8, 20*8, 24*8, 28*8 }, 32*8 }; static GFXDECODE_START( rampart ) GFXDECODE_ENTRY( REGION_GFX1, 0, molayout, 256, 16 ) GFXDECODE_END /************************************* * * Machine driver * *************************************/ static MACHINE_DRIVER_START( rampart ) /* basic machine hardware */ MDRV_CPU_ADD(M68000, ATARI_CLOCK_14MHz/2) MDRV_CPU_PROGRAM_MAP(main_readmem,main_writemem) MDRV_CPU_VBLANK_INT(atarigen_video_int_gen,1) MDRV_MACHINE_RESET(rampart) MDRV_NVRAM_HANDLER(atarigen) /* video hardware */ MDRV_VIDEO_ATTRIBUTES(VIDEO_TYPE_RASTER | VIDEO_UPDATE_BEFORE_VBLANK) MDRV_GFXDECODE(rampart) MDRV_PALETTE_LENGTH(512) MDRV_SCREEN_ADD("main", 0) MDRV_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16) /* note: these parameters are from published specs, not derived */ /* the board uses an SOS-2 chip to generate video signals */ MDRV_SCREEN_RAW_PARAMS(ATARI_CLOCK_14MHz/2, 456, 0+4, 336+4, 262, 0, 240) MDRV_VIDEO_START(rampart) MDRV_VIDEO_UPDATE(rampart) /* sound hardware */ MDRV_SPEAKER_STANDARD_MONO("mono") MDRV_SOUND_ADD(OKIM6295, ATARI_CLOCK_14MHz/4/3) MDRV_SOUND_CONFIG(okim6295_interface_region_1_pin7low) MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.60) MDRV_SOUND_ADD(YM2413, ATARI_CLOCK_14MHz/4) MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0) MACHINE_DRIVER_END /************************************* * * ROM definition(s) * *************************************/ ROM_START( rampart ) ROM_REGION( 0x148000, REGION_CPU1, 0 ) ROM_LOAD16_BYTE( "136082-1033.13l", 0x00000, 0x80000, CRC(5c36795f) SHA1(2f3dcdfd6b04d851aa1082848624687ac0cec9e2) ) ROM_LOAD16_BYTE( "136082-1032.13j", 0x00001, 0x80000, CRC(ec7bc38c) SHA1(72d4dbb11e92c69cb560bbb39d7bbd5e845b1e4d) ) ROM_LOAD16_BYTE( "136082-2031.13l", 0x00000, 0x10000, CRC(07650c7e) SHA1(0a8eec76aefd4fd1515c1a0d5b96f71c674cdce7) ) ROM_LOAD16_BYTE( "136082-2030.13h", 0x00001, 0x10000, CRC(e2bf2a26) SHA1(be15b3b0e302382518436441875a1b72954a589a) ) ROM_REGION( 0x20000, REGION_GFX1, ROMREGION_DISPOSE | ROMREGION_INVERT ) ROM_LOAD( "136082-1009.2n", 0x000000, 0x20000, CRC(23b95f59) SHA1(cec8523eaf83d4c9bb0055f34024a6e9c52c4c0c) ) ROM_REGION( 0x40000, REGION_SOUND1, 0 ) /* ADPCM data */ ROM_LOAD( "136082-1007.2d", 0x00000, 0x20000, CRC(c96a0fc3) SHA1(6e7e242d0afa4714ca31d77ccbf8ee487bbdb1e4) ) ROM_LOAD( "136082-1008.1d", 0x20000, 0x20000, CRC(518218d9) SHA1(edf1b11579dcfa9a872fa4bd866dc2f95fac767d) ) ROM_REGION( 0x0c00, REGION_PLDS, ROMREGION_DISPOSE ) ROM_LOAD( "gal16v8-136082-1000.1j", 0x0000, 0x0117, CRC(18f82b38) SHA1(2ffd43a143396617704ced51da78fec2cf12cced) ) ROM_LOAD( "gal16v8-136082-1001.4l", 0x0200, 0x0117, CRC(74d75d68) SHA1(dc3ee765ec48a76af6433026243284437958a39a) ) ROM_LOAD( "gal16v8-136082-1002.7k", 0x0400, 0x0117, CRC(f593401f) SHA1(fbc258cd389f397a005a522812d412f4ed9bf407) ) ROM_LOAD( "gal20v8-136082-1003.8j", 0x0600, 0x0157, CRC(67bb9705) SHA1(65bb31421f1303fce546781a463cc76921e58b25) ) ROM_LOAD( "gal20v8-136082-1004.8m", 0x0800, 0x0157, CRC(0001ed7d) SHA1(c16a695361ee17d7508f6fb46854a9189549e3a3) ) ROM_LOAD( "gal16v8-136082-1006.12c", 0x0a00, 0x0117, CRC(1f3b735d) SHA1(d3243cb3565e32e25637987de6044fe6e453d2f0) ) ROM_END ROM_START( ramprt2p ) ROM_REGION( 0x148000, REGION_CPU1, 0 ) ROM_LOAD16_BYTE( "136082-1033.13l", 0x00000, 0x80000, CRC(5c36795f) SHA1(2f3dcdfd6b04d851aa1082848624687ac0cec9e2) ) ROM_LOAD16_BYTE( "136082-1032.13j", 0x00001, 0x80000, CRC(ec7bc38c) SHA1(72d4dbb11e92c69cb560bbb39d7bbd5e845b1e4d) ) ROM_LOAD16_BYTE( "136082-2051.13kl", 0x00000, 0x20000, CRC(d4e26d0f) SHA1(5106549e6d003711bfd390aa2e19e6e5f33f2cf9) ) ROM_LOAD16_BYTE( "136082-2050.13h", 0x00001, 0x20000, CRC(ed2a49bd) SHA1(b97ee41b7f930ba7b8b113c1b19c7729a5880b1f) ) ROM_REGION( 0x20000, REGION_GFX1, ROMREGION_DISPOSE | ROMREGION_INVERT ) ROM_LOAD( "136082-1019.2n", 0x000000, 0x20000, CRC(efa38bef) SHA1(d38448138134e7a0be2a75c3cd6ab0729da5b83b) ) ROM_REGION( 0x40000, REGION_SOUND1, 0 ) /* ADPCM data */ ROM_LOAD( "136082-1007.2d", 0x00000, 0x20000, CRC(c96a0fc3) SHA1(6e7e242d0afa4714ca31d77ccbf8ee487bbdb1e4) ) ROM_LOAD( "136082-1008.1d", 0x20000, 0x20000, CRC(518218d9) SHA1(edf1b11579dcfa9a872fa4bd866dc2f95fac767d) ) ROM_REGION( 0x0c00, REGION_PLDS, ROMREGION_DISPOSE ) ROM_LOAD( "gal16v8-136082-1000.1j", 0x0000, 0x0117, CRC(18f82b38) SHA1(2ffd43a143396617704ced51da78fec2cf12cced) ) ROM_LOAD( "gal16v8-136082-1001.4l", 0x0200, 0x0117, CRC(74d75d68) SHA1(dc3ee765ec48a76af6433026243284437958a39a) ) ROM_LOAD( "gal16v8-136082-1002.7k", 0x0400, 0x0117, CRC(f593401f) SHA1(fbc258cd389f397a005a522812d412f4ed9bf407) ) ROM_LOAD( "gal20v8-136082-1003.8j", 0x0600, 0x0157, CRC(67bb9705) SHA1(65bb31421f1303fce546781a463cc76921e58b25) ) ROM_LOAD( "gal20v8-136082-1004.8m", 0x0800, 0x0157, CRC(0001ed7d) SHA1(c16a695361ee17d7508f6fb46854a9189549e3a3) ) ROM_LOAD( "gal16v8-136082-1056.12c", 0x0a00, 0x0117, CRC(bd70bf25) SHA1(e89ed789fae0c5776a10bbebc7dda1d85fc79374) ) ROM_END ROM_START( rampartj ) ROM_REGION( 0x148000, REGION_CPU1, 0 ) ROM_LOAD16_BYTE( "136082-3451.bin", 0x00000, 0x20000, CRC(c6596d32) SHA1(3e3e0cbb3b5fc6dd9685bbc4b18c22e0858d9282) ) ROM_LOAD16_BYTE( "136082-3450.bin", 0x00001, 0x20000, CRC(563b33cc) SHA1(8b454bc19644f1d3d76e4a13f08071cf5eab36e2) ) ROM_LOAD16_BYTE( "136082-1463.bin", 0x40000, 0x20000, CRC(65fe3491) SHA1(3aa3b98fb7fe808ef89e100b5e1ee1c99c4312b6) ) ROM_LOAD16_BYTE( "136082-1462.bin", 0x40001, 0x20000, CRC(ba731652) SHA1(298adda4fd67991b5153e5316f50da79320754ee) ) ROM_LOAD16_BYTE( "136082-1465.bin", 0x80000, 0x20000, CRC(9cb87d1b) SHA1(95f24ec2c42b39878b3680c4948bfb0d712cd60e) ) ROM_LOAD16_BYTE( "136082-1464.bin", 0x80001, 0x20000, CRC(2ff75c40) SHA1(9c444402d237c3933219ab4872f180abc392547f) ) ROM_LOAD16_BYTE( "136082-1467.bin", 0xc0000, 0x20000, CRC(e0cfcda5) SHA1(0a1bf083e0589260caf6dfcb4e556b8f5e1ece25) ) ROM_LOAD16_BYTE( "136082-1466.bin", 0xc0001, 0x20000, CRC(a7a5a951) SHA1(a9a6adfa315c41cde4cca07d7e7d7f79ecba9f7a) ) ROM_REGION( 0x20000, REGION_GFX1, ROMREGION_DISPOSE | ROMREGION_INVERT ) ROM_LOAD( "136082-2419.bin", 0x000000, 0x20000, CRC(456a8aae) SHA1(f35a3dc2069e20493661cf35fc0d4f4c4e11e420) ) ROM_REGION( 0x40000, REGION_SOUND1, 0 ) /* ADPCM data */ ROM_LOAD( "136082-1007.2d", 0x00000, 0x20000, CRC(c96a0fc3) SHA1(6e7e242d0afa4714ca31d77ccbf8ee487bbdb1e4) ) ROM_LOAD( "136082-1008.1d", 0x20000, 0x20000, CRC(518218d9) SHA1(edf1b11579dcfa9a872fa4bd866dc2f95fac767d) ) ROM_REGION( 0x0c00, REGION_PLDS, ROMREGION_DISPOSE ) ROM_LOAD( "gal16v8-136082-1000.1j", 0x0000, 0x0117, CRC(18f82b38) SHA1(2ffd43a143396617704ced51da78fec2cf12cced) ) ROM_LOAD( "gal16v8-136082-1001.4l", 0x0200, 0x0117, CRC(74d75d68) SHA1(dc3ee765ec48a76af6433026243284437958a39a) ) ROM_LOAD( "gal16v8-136082-1002.7k", 0x0400, 0x0117, CRC(f593401f) SHA1(fbc258cd389f397a005a522812d412f4ed9bf407) ) ROM_LOAD( "gal20v8-136082-1003.8j", 0x0600, 0x0157, CRC(67bb9705) SHA1(65bb31421f1303fce546781a463cc76921e58b25) ) ROM_LOAD( "gal20v8-136082-1004.8m", 0x0800, 0x0157, CRC(0001ed7d) SHA1(c16a695361ee17d7508f6fb46854a9189549e3a3) ) ROM_LOAD( "gal16v8-136082-1005.12c", 0x0a00, 0x0117, CRC(42c05114) SHA1(869a7f07da2d096b5a62f694db0dc1ca62d62242) ) ROM_END /************************************* * * Driver initialization * *************************************/ static DRIVER_INIT( rampart ) { static const UINT16 compressed_default_eeprom[] = { 0x0001,0x01FF,0x0E00,0x01FF,0x0E00,0x01FF,0x0150,0x0101, 0x0100,0x0151,0x0300,0x0151,0x0400,0x0150,0x0101,0x01FB, 0x021E,0x0104,0x011A,0x0200,0x011A,0x0700,0x01FF,0x0E00, 0x01FF,0x0E00,0x01FF,0x0150,0x0101,0x0100,0x0151,0x0300, 0x0151,0x0400,0x0150,0x0101,0x01FB,0x021E,0x0104,0x011A, 0x0200,0x011A,0x0700,0x01AD,0x0150,0x0129,0x0187,0x01CD, 0x0113,0x0100,0x0172,0x0179,0x0140,0x0186,0x0113,0x0100, 0x01E5,0x0149,0x01F8,0x012A,0x019F,0x0185,0x01E7,0x0113, 0x0100,0x01C3,0x01B5,0x0115,0x0184,0x0113,0x0100,0x0179, 0x014E,0x01B7,0x012F,0x016D,0x01B7,0x01D5,0x010B,0x0100, 0x0163,0x0242,0x01B6,0x010B,0x0100,0x01B9,0x0104,0x01B7, 0x01F0,0x01DD,0x01B5,0x0119,0x010B,0x0100,0x01C2,0x012D, 0x0142,0x01B4,0x010B,0x0100,0x01C5,0x0115,0x01BB,0x016F, 0x01A2,0x01CF,0x01D3,0x0107,0x0100,0x0192,0x01CD,0x0142, 0x01CE,0x0107,0x0100,0x0170,0x0136,0x01B1,0x0140,0x017B, 0x01CD,0x01FB,0x0107,0x0100,0x0144,0x013B,0x0148,0x01CC, 0x0107,0x0100,0x0181,0x0139,0x01FF,0x0E00,0x01FF,0x0E00, 0x01FF,0x0E00,0x01FF,0x0E00,0x01FF,0x0E00,0x01FF,0x0E00, 0x01FF,0x0E00,0x01FF,0x0E00,0x01FF,0x0E00,0x01FF,0x0E00, 0x01FF,0x0E00,0x01FF,0x0E00,0x01FF,0x0E00,0x01FF,0x0E00, 0x0000 }; atarigen_eeprom_default = compressed_default_eeprom; memcpy(&memory_region(REGION_CPU1)[0x140000], &memory_region(REGION_CPU1)[0x40000], 0x8000); atarigen_slapstic_init(0, 0x140000, 118); } /************************************* * * Game driver(s) * *************************************/ GAME( 1990, rampart, 0, rampart, rampart, rampart, ROT0, "Atari Games", "Rampart (Trackball)", 0 ) GAME( 1990, ramprt2p, rampart, rampart, ramprt2p, rampart, ROT0, "Atari Games", "Rampart (Joystick)", 0 ) GAME( 1990, rampartj, rampart, rampart, rampartj, rampart, ROT0, "Atari Games", "Rampart (Japan, Joystick)", 0 )