/*************************************************************************** Namco early 8080-based games All these games run on the same hardware design, with minor differences. Gee Bee was the very first videogame released by Namco, and runs on a b&w board. The year after, the design was upgraded to add color and a second sound channel; however, the b&w board was not abandoned, and more games were written for it with the only difference of a larger gfx ROM (losing the ability to choose full or half brightness for each character). Gee Bee memory map Navarone, Kaitei, SOS are the same but CGROM is twice as large Address Dir Data Name Description ---------------- --- -------- --------- ----------------------- -000xxxxxxxxxxxx R xxxxxxxx ROM2/ROM0 program ROM -001xxxxxxxxxxxx R xxxxxxxx ROM1 program ROM -010--xxxxxxxxxx R/W xxxxxxxx VRAM tile code -011--xxxxxxxxxx R xxxxxxxx CGROM Character Generator ROM -100----xxxxxxxx R/W xxxxxxxx RAM work RAM -101----------00*R --xxxxxx SW READ 0 switch inputs bank #1 (coins, buttons) -101----------01*R --xxxxxx SW READ 1 switch inputs bank #2 (optional, only kaiteik uses it) -101----------10*R --xxxxxx SW READ 2 dip switches -101----------11*R xxxxxxxx VOL READ paddle input (digital joystick is hacked in for the other games) -110----------00* W xxxxxxxx BHD ball horizontal position -110----------01* W xxxxxxxx BVD ball vertical position -110----------10* W -------- n.c. -110----------11* W ----xxxx SOUND select frequency and wave shape for sound -111---------000* W -------x LAMP 1 player 1 start lamp -111---------001* W -------x LAMP 2 player 2 start lamp -111---------010* W -------x LAMP 3 serve lamp -111---------011* W -------x COUNTER coin counter -111---------100* W -------x LOCK OUT COIL coin lock out -111---------101* W -------x BGW invert CGROM data -111---------110* W -------x BALL ON ball enable -111---------111* W -------x INV screen flip * = usually accessed using the in/out instructions Bomb Bee / Cutie Q memory map Warp Warp is the same but A13 and A15 are swapped to make space for more program ROM. Address Dir Data Name Description ---------------- --- -------- --------- ----------------------- -00xxxxxxxxxxxxx R xxxxxxxx ROM program ROM -01---xxxxxxxxxx R/W xxxxxxxx RAM work RAM -10-00xxxxxxxxxx R/W xxxxxxxx V-RAM 1 tile code -10-01xxxxxxxxxx R/W xxxxxxxx V-RAM 2 tile color -10-1xxxxxxxxxxx R xxxxxxxx CGROM Character Generator ROM -11-------00-xxx R -------x SW READ switch inputs (coins, buttons) -11-------01---- R xxxxxxxx VOL READ paddle input (digital joystick is hacked in for warpwarp) -11-------10-xxx R -------x DIP SW 1 dip switches bank #1 -11-------11-xxx R -------x DIP SW 2 dip switches bank #2 (optional, not used by any game) -11-------00--00 W xxxxxxxx BHD ball horizontal position -11-------00--01 W xxxxxxxx BVD ball vertical position -11-------00--10 W ----xxxx SOUND select frequency and wave shape for sound channel #1 -11-------00--11 W -------- WATCH DOG RESET -11-------01---- W --xxxxxx MUSIC 1 sound channel #2 frequency -11-------10---- W --xxxxxx MUSIC 2 sound channel #2 shape -11-------11-000 W -------x LAMP 1 player 1 start lamp -11-------11-001 W -------x LAMP 2 player 2 start lamp -11-------11-010 W -------x LAMP 3 serve lamp (not used by warp warp) -11-------11-011 W -------x n.c. -11-------11-100 W -------x LOCK OUT coin lock out -11-------11-101 W -------x COUNTER coin counter -11-------11-110 W -------x BALL ON ball enable + irq enable -11-------11-111 W -------x INV screen flip Notes: - Warp Warp Easter egg: - enter service mode - keep B1 pressed and enter the following sequence: 2xR 6xD L 4xU (c) 1981 NAMCO LTD. will be added at the bottom of the screen. - In the pinball games, there isn't a player 2 "serve" button - both players use the same input. I think this is correct behaviour, because there is nothing in the schematics suggesting otherwise (while there is a provision to switch from one paddle to the other). The Bomb Bee flyer shows that the cocktail cabinet did have one serve button per player, but I guess they were just wired together on the same input. - The ball size changes from game to game. I have determined what I believe are the correct sizes by checking how the games handle the ball position in cocktail mode (the ball isn't automatically flipped by the hardware). - kaitein and kaitei are intriguing. The game is more or less the same, but the code is radically different, and the gfx ROMs are arranged differently. kaitein is by Namco and kaitei is by "K'K-TOKKI". kaitein does a ROM/RAM test on startup, while kaitei jumps straight into the game. kaitein is locked in cocktail mode, while kaitei has support for a cabinet dip switch. The title screen in kaitein is nice and polished, while in kaitei it's confused, with fishes going over the text. There are several other differences. The code in kaitei is longer (0x1800 bytes vs. just 0x1000 in kaitein) and less efficient, while kaitein has some clever space optimizations. Kaitei (and SOS) is developed by Kazuharu Yoshioka of K.K.Tokki (Universal Tokki). Namco acquired license for these games. - The coin counter doesn't work in kaitei. This might be the expected behaviour. - sos does a "coffee break" every 2000 points, showing a girl. The first times, she wears a bikini. If the "nudity" switch is on, after 6000 points she's topless and every 10000 points she's nude. - The only difference between 'warpwarpr' and 'warpwarpr2' is the copyright string on the first screen (when the scores are displayed) : * 'warpwarpr' : "(c) 1981 ROCK-OLA MFG.CORP." (text stored at 0x33ff to 0x3417) * 'warpwarp2' : "(c) 1981 ROCK-OLA MFG.CO." (text stored at 0x33ff to 0x3415) Note that the checksum at 0x37ff (used for checking ROM at 0x3000 to 0x37ff) is different of course. - warpwarpr doesn't have an explicit Namco copyright notice, but in the default high score table the names are NNN AAA MMM CCC OOO. warpwarp doesn't have an high score table at all. TODO: - I arbitrarily assigned a uniform blue overlay to sos. I don't know how it's supposed to be. ***************************************************************************/ #include "emu.h" #include "cpu/i8085/i8085.h" #include "includes/warpwarp.h" #include "geebee.lh" #include "navarone.lh" #include "sos.lh" #define MASTER_CLOCK XTAL_18_432MHz static READ8_HANDLER( geebee_in_r ) { warpwarp_state *state = space->machine().driver_data(); int res; static const char *const portnames[] = { "SW0", "SW1", "DSW2", "PLACEHOLDER" }; // "IN1" & "IN2" are read separately when offset==3 offset &= 3; res = input_port_read_safe(space->machine(), portnames[offset], 0); if (offset == 3) { res = input_port_read(space->machine(), (flip_screen_get(space->machine()) & 1) ? "IN2" : "IN1"); // read player 2 input in cocktail mode if (state->m_handle_joystick) { /* map digital two-way joystick to two fixed VOLIN values */ if (res & 2) return 0x9f; if (res & 1) return 0x0f; return 0x60; } } return res; } static WRITE8_HANDLER( geebee_out6_w ) { warpwarp_state *state = space->machine().driver_data(); switch (offset & 3) { case 0: state->m_ball_h = data; break; case 1: state->m_ball_v = data; break; case 2: /* n.c. */ break; case 3: geebee_sound_w(space->machine().device("geebee"),0,data); break; } } static WRITE8_HANDLER( geebee_out7_w ) { warpwarp_state *state = space->machine().driver_data(); switch (offset & 7) { case 0: set_led_status(space->machine(), 0,data & 1); break; case 1: set_led_status(space->machine(), 1,data & 1); break; case 2: set_led_status(space->machine(), 2,data & 1); break; case 3: coin_counter_w(space->machine(), 0,data & 1); break; case 4: if (strcmp(space->machine().system().name, "geebeeb")) coin_lockout_global_w(space->machine(), ~data & 1); break; case 5: if( state->m_geebee_bgw != (data & 1) ) tilemap_mark_all_tiles_dirty_all(space->machine()); state->m_geebee_bgw = data & 1; break; case 6: state->m_ball_on = data & 1; break; case 7: flip_screen_set(space->machine(), data & 1); break; } } /* Read Switch Inputs */ static READ8_HANDLER( warpwarp_sw_r ) { return (input_port_read(space->machine(), "IN0") >> (offset & 7)) & 1; } /* Read Dipswitches */ static READ8_DEVICE_HANDLER( warpwarp_dsw1_r ) { return (input_port_read(device->machine(), "DSW1") >> (offset & 7)) & 1; } /* Read mux Controller Inputs */ static READ8_DEVICE_HANDLER( warpwarp_vol_r ) { warpwarp_state *state = device->machine().driver_data(); int res; res = input_port_read(device->machine(), (flip_screen_get(device->machine()) & 1) ? "VOLIN2" : "VOLIN1"); if (state->m_handle_joystick) { if (res & 1) return 0x0f; if (res & 2) return 0x3f; if (res & 4) return 0x6f; if (res & 8) return 0x9f; return 0xff; } return res; } static WRITE8_HANDLER( warpwarp_out0_w ) { warpwarp_state *state = space->machine().driver_data(); switch (offset & 3) { case 0: state->m_ball_h = data; break; case 1: state->m_ball_v = data; break; case 2: warpwarp_sound_w(space->machine().device("warpwarp"),0,data); break; case 3: watchdog_reset_w(space,0,data); break; } } static WRITE8_HANDLER( warpwarp_out3_w ) { warpwarp_state *state = space->machine().driver_data(); switch (offset & 7) { case 0: set_led_status(space->machine(), 0,data & 1); break; case 1: set_led_status(space->machine(), 1,data & 1); break; case 2: set_led_status(space->machine(), 2,data & 1); break; case 3: /* n.c. */ break; case 4: coin_lockout_global_w(space->machine(), ~data & 1); break; case 5: coin_counter_w(space->machine(), 0,data & 1); break; case 6: state->m_ball_on = data & 1; cpu_interrupt_enable(space->machine().device("maincpu"), data & 1); if (~data & 1) cputag_set_input_line(space->machine(), "maincpu", 0, CLEAR_LINE); break; case 7: flip_screen_set(space->machine(), data & 1); break; } } static ADDRESS_MAP_START( geebee_map, AS_PROGRAM, 8 ) AM_RANGE(0x0000, 0x1fff) AM_ROM AM_RANGE(0x2000, 0x23ff) AM_MIRROR(0x400) AM_RAM_WRITE(geebee_videoram_w) AM_BASE_MEMBER(warpwarp_state, m_geebee_videoram) // mirror used by kaitei due to a bug AM_RANGE(0x3000, 0x37ff) AM_ROM AM_REGION("gfx1", 0) // 3000-33ff in geebee AM_RANGE(0x4000, 0x40ff) AM_RAM AM_RANGE(0x5000, 0x53ff) AM_READ(geebee_in_r) AM_RANGE(0x6000, 0x6fff) AM_WRITE(geebee_out6_w) AM_RANGE(0x7000, 0x7fff) AM_WRITE(geebee_out7_w) ADDRESS_MAP_END static ADDRESS_MAP_START( geebee_port_map, AS_IO, 8 ) AM_RANGE(0x50, 0x53) AM_READ(geebee_in_r) AM_RANGE(0x60, 0x6f) AM_WRITE(geebee_out6_w) AM_RANGE(0x70, 0x7f) AM_WRITE(geebee_out7_w) ADDRESS_MAP_END static ADDRESS_MAP_START( bombbee_map, AS_PROGRAM, 8 ) AM_RANGE(0x0000, 0x1fff) AM_ROM AM_RANGE(0x2000, 0x23ff) AM_RAM AM_RANGE(0x4000, 0x47ff) AM_RAM_WRITE(warpwarp_videoram_w) AM_BASE_MEMBER(warpwarp_state, m_videoram) AM_RANGE(0x4800, 0x4fff) AM_ROM AM_REGION("gfx1", 0) AM_RANGE(0x6000, 0x600f) AM_READWRITE(warpwarp_sw_r, warpwarp_out0_w) AM_RANGE(0x6010, 0x601f) AM_DEVREADWRITE("warpwarp", warpwarp_vol_r, warpwarp_music1_w) AM_RANGE(0x6020, 0x602f) AM_DEVREADWRITE("warpwarp", warpwarp_dsw1_r, warpwarp_music2_w) AM_RANGE(0x6030, 0x603f) AM_WRITE(warpwarp_out3_w) ADDRESS_MAP_END static ADDRESS_MAP_START( warpwarp_map, AS_PROGRAM, 8 ) AM_RANGE(0x0000, 0x3fff) AM_ROM AM_RANGE(0x8000, 0x83ff) AM_RAM AM_RANGE(0x4000, 0x47ff) AM_RAM_WRITE(warpwarp_videoram_w) AM_BASE_MEMBER(warpwarp_state, m_videoram) AM_RANGE(0x4800, 0x4fff) AM_ROM AM_REGION("gfx1", 0) AM_RANGE(0xc000, 0xc00f) AM_READWRITE(warpwarp_sw_r, warpwarp_out0_w) AM_RANGE(0xc010, 0xc01f) AM_DEVREADWRITE("warpwarp", warpwarp_vol_r, warpwarp_music1_w) AM_RANGE(0xc020, 0xc02f) AM_DEVREADWRITE("warpwarp", warpwarp_dsw1_r, warpwarp_music2_w) AM_RANGE(0xc030, 0xc03f) AM_WRITE(warpwarp_out3_w) ADDRESS_MAP_END static INPUT_PORTS_START( geebee ) PORT_START("SW0") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_START1 ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_START2 ) PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_SERVICE( 0x20, IP_ACTIVE_LOW ) PORT_BIT( 0xc0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("SW1") PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("DSW2") PORT_DIPNAME( 0x01, 0x00, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("DSW2:1") PORT_DIPSETTING( 0x00, DEF_STR( Upright ) ) PORT_DIPSETTING( 0x01, DEF_STR( Cocktail) ) PORT_DIPNAME( 0x02, 0x00, DEF_STR( Lives ) ) PORT_DIPLOCATION("DSW2:2") PORT_DIPSETTING( 0x00, "3" ) PORT_DIPSETTING( 0x02, "5" ) PORT_DIPNAME( 0x0c, 0x00, DEF_STR( Coinage ) ) PORT_DIPLOCATION("DSW2:3,4") PORT_DIPSETTING( 0x08, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x04, DEF_STR( 1C_2C ) ) PORT_DIPSETTING( 0x0c, DEF_STR( Free_Play ) ) PORT_DIPNAME( 0x30, 0x10, "Replay" ) PORT_DIPLOCATION("DSW2:5,6") // awards 1 credit PORT_DIPSETTING( 0x10, "40k 80k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x20, "70k 140k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x30, "100k 200k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x10, "60k 120k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_DIPSETTING( 0x20, "100k 200k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_DIPSETTING( 0x30, "150k 300k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_BIT( 0xc0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("IN1") PORT_BIT( 0xff, 0x58, IPT_PADDLE ) PORT_MINMAX(0x10,0xa0) PORT_SENSITIVITY(30) PORT_KEYDELTA(15) PORT_CENTERDELTA(0) PORT_REVERSE PORT_START("IN2") /* Cocktail */ PORT_BIT( 0xff, 0x58, IPT_PADDLE ) PORT_MINMAX(0x10,0xa0) PORT_SENSITIVITY(30) PORT_KEYDELTA(15) PORT_CENTERDELTA(0) PORT_REVERSE PORT_COCKTAIL INPUT_PORTS_END static INPUT_PORTS_START( geebeeb ) PORT_INCLUDE( geebee ) PORT_MODIFY("DSW2") PORT_DIPNAME( 0x30, 0x10, "Replay" ) // awards 1 credit PORT_DIPSETTING( 0x10, "40k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x20, "70k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x30, "100k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x10, "60k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_DIPSETTING( 0x20, "100k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_DIPSETTING( 0x30, "150k" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) INPUT_PORTS_END static INPUT_PORTS_START( navarone ) PORT_START("SW0") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_COCKTAIL PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_START1 ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_START2 ) PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_BIT( 0xc0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("SW1") PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("DSW2") PORT_DIPNAME( 0x01, 0x00, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("DSW2:1") PORT_DIPSETTING( 0x00, DEF_STR( Upright ) ) PORT_DIPSETTING( 0x01, DEF_STR( Cocktail) ) PORT_DIPNAME( 0x02, 0x02, DEF_STR( Lives ) ) PORT_DIPLOCATION("DSW2:2") PORT_DIPSETTING( 0x00, "2" ) PORT_DIPSETTING( 0x02, "3" ) PORT_DIPNAME( 0x0c, 0x04, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("DSW2:3,4") PORT_DIPSETTING( 0x04, "5000" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x08, "6000" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x0c, "7000" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x00) PORT_DIPSETTING( 0x04, "6000" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_DIPSETTING( 0x08, "7000" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_DIPSETTING( 0x0c, "8000" ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_CONDITION("DSW2", 0x02, PORTCOND_EQUALS, 0x02) PORT_DIPNAME( 0x30, 0x10, DEF_STR( Coinage ) ) PORT_DIPLOCATION("DSW2:5,6") PORT_DIPSETTING( 0x30, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x10, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x20, DEF_STR( 1C_2C ) ) PORT_DIPSETTING( 0x00, DEF_STR( Free_Play ) ) PORT_BIT( 0xc0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("IN1") /* Fake input port to support digital joystick */ PORT_BIT( 0x01, 0x00, IPT_JOYSTICK_RIGHT ) PORT_BIT( 0x02, 0x00, IPT_JOYSTICK_LEFT ) PORT_START("IN2") /* Fake input port to support digital joystick */ PORT_BIT( 0x01, 0x00, IPT_JOYSTICK_RIGHT ) PORT_COCKTAIL PORT_BIT( 0x02, 0x00, IPT_JOYSTICK_LEFT ) PORT_COCKTAIL INPUT_PORTS_END static INPUT_PORTS_START( kaitein ) PORT_START("SW0") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_COCKTAIL PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_START1 ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_START2 ) PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_BIT( 0xc0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("SW1") PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("DSW2") PORT_DIPNAME( 0x03, 0x01, DEF_STR( Lives ) ) PORT_DIPLOCATION("DSW2:1,2") PORT_DIPSETTING( 0x00, "2" ) PORT_DIPSETTING( 0x01, "3" ) PORT_DIPSETTING( 0x02, "4" ) PORT_DIPSETTING( 0x03, "5" ) PORT_DIPNAME( 0x0c, 0x04, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("DSW2:3,4") PORT_DIPSETTING( 0x04, "2000" ) PORT_DIPSETTING( 0x08, "4000" ) PORT_DIPSETTING( 0x0c, "6000" ) PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_DIPNAME( 0x30, 0x10, DEF_STR( Coinage ) ) PORT_DIPLOCATION("DSW2:5,6") PORT_DIPSETTING( 0x30, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x10, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x20, DEF_STR( 1C_2C ) ) PORT_DIPSETTING( 0x00, DEF_STR( Free_Play ) ) PORT_BIT( 0xc0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("IN1") /* Fake input port to support digital joystick */ PORT_BIT( 0x01, 0x00, IPT_JOYSTICK_RIGHT ) PORT_BIT( 0x02, 0x00, IPT_JOYSTICK_LEFT ) PORT_START("IN2") /* Fake input port to support digital joystick */ PORT_BIT( 0x01, 0x00, IPT_JOYSTICK_RIGHT ) PORT_COCKTAIL PORT_BIT( 0x02, 0x00, IPT_JOYSTICK_LEFT ) PORT_COCKTAIL INPUT_PORTS_END static INPUT_PORTS_START( kaitei ) PORT_START("SW0") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_START1 ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_START2 ) PORT_BIT( 0xf2, 0xa0, IPT_UNKNOWN ) // game verifies these bits and freezes if they don't match PORT_START("SW1") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_COCKTAIL PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_COCKTAIL PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_COCKTAIL PORT_BIT( 0xc0, 0x80, IPT_UNKNOWN ) // game verifies these two bits and freezes if they don't match PORT_START("DSW2") PORT_DIPNAME( 0x01, 0x01, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("DSW2:1") PORT_DIPSETTING( 0x01, DEF_STR( Upright ) ) PORT_DIPSETTING( 0x00, DEF_STR( Cocktail ) ) PORT_DIPNAME( 0x06, 0x06, DEF_STR( Lives ) ) PORT_DIPLOCATION("DSW2:2,3") PORT_DIPSETTING( 0x06, "4" ) PORT_DIPSETTING( 0x04, "5" ) PORT_DIPSETTING( 0x02, "6" ) PORT_DIPSETTING( 0x00, "7" ) PORT_DIPNAME( 0x18, 0x18, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("DSW2:4,5") PORT_DIPSETTING( 0x18, "4000" ) PORT_DIPSETTING( 0x10, "6000" ) PORT_DIPSETTING( 0x08, "8000" ) PORT_DIPSETTING( 0x00, "10000" ) PORT_DIPUNUSED_DIPLOC( 0x20, 0x20, "DSW2:6" ) PORT_BIT( 0xc0, 0x80, IPT_UNKNOWN ) // game verifies these two bits and freezes if they don't match PORT_START("IN1") PORT_BIT( 0x3f, 0x00, IPT_UNKNOWN ) PORT_BIT( 0xc0, 0x80, IPT_UNKNOWN ) // game verifies these two bits and freezes if they don't match PORT_START("IN2") PORT_BIT( 0x3f, 0x00, IPT_UNKNOWN ) PORT_BIT( 0xc0, 0x80, IPT_UNKNOWN ) // game verifies these two bits and freezes if they don't match INPUT_PORTS_END static INPUT_PORTS_START( sos ) PORT_START("SW0") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_COCKTAIL PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_START1 ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_START2 ) PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_BIT( 0xc0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("SW1") PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("DSW2") PORT_DIPNAME( 0x01, 0x00, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("DSW2:1") PORT_DIPSETTING( 0x00, DEF_STR( Upright ) ) PORT_DIPSETTING( 0x01, DEF_STR( Cocktail) ) PORT_DIPNAME( 0x06, 0x02, DEF_STR( Lives ) ) PORT_DIPLOCATION("DSW2:2,3") PORT_DIPSETTING( 0x00, "2" ) PORT_DIPSETTING( 0x02, "3" ) PORT_DIPSETTING( 0x04, "4" ) PORT_DIPSETTING( 0x06, "5" ) PORT_DIPNAME( 0x18, 0x08, DEF_STR( Coinage ) ) PORT_DIPLOCATION("DSW2:4,5") PORT_DIPSETTING( 0x18, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x08, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x10, DEF_STR( 1C_2C ) ) PORT_DIPSETTING( 0x00, DEF_STR( Free_Play ) ) PORT_DIPNAME( 0x20, 0x20, "Nudity" ) PORT_DIPLOCATION("DSW2:6") PORT_DIPSETTING( 0x00, DEF_STR( Off ) ) PORT_DIPSETTING( 0x20, DEF_STR( On ) ) PORT_BIT( 0xc0, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("IN1") /* Fake input port to support digital joystick */ PORT_BIT( 0x01, 0x00, IPT_JOYSTICK_RIGHT ) PORT_BIT( 0x02, 0x00, IPT_JOYSTICK_LEFT ) PORT_START("IN2") /* Fake input port to support digital joystick */ PORT_BIT( 0x01, 0x00, IPT_JOYSTICK_RIGHT ) PORT_COCKTAIL PORT_BIT( 0x02, 0x00, IPT_JOYSTICK_LEFT ) PORT_COCKTAIL INPUT_PORTS_END static INPUT_PORTS_START( bombbee ) PORT_START("IN0") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_START1 ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_START2 ) PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_SERVICE( 0x20, IP_ACTIVE_LOW ) PORT_DIPNAME( 0x40, 0x40, DEF_STR( Cabinet ) ) PORT_DIPSETTING( 0x40, DEF_STR( Upright ) ) PORT_DIPSETTING( 0x00, DEF_STR( Cocktail ) ) PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_START("DSW1") PORT_DIPNAME( 0x03, 0x03, DEF_STR( Coinage ) ) PORT_DIPLOCATION("DSW1:1,2") PORT_DIPSETTING( 0x02, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x03, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x01, DEF_STR( 1C_2C ) ) PORT_DIPSETTING( 0x00, DEF_STR( Free_Play ) ) PORT_DIPNAME( 0x0c, 0x00, DEF_STR( Lives ) ) PORT_DIPLOCATION("DSW1:3,4") PORT_DIPSETTING( 0x00, "3" ) PORT_DIPSETTING( 0x04, "4" ) // PORT_DIPSETTING( 0x08, "4" ) // duplicated setting PORT_DIPSETTING( 0x0c, "5" ) PORT_DIPUNUSED_DIPLOC( 0x10, 0x10, "DSW1:5" ) PORT_DIPNAME( 0xe0, 0x00, "Replay" ) PORT_DIPLOCATION("DSW1:6,7,8") // awards 1 credit PORT_DIPSETTING( 0x00, "50000" ) PORT_DIPSETTING( 0x20, "60000" ) PORT_DIPSETTING( 0x40, "70000" ) PORT_DIPSETTING( 0x60, "80000" ) PORT_DIPSETTING( 0x80, "100000" ) PORT_DIPSETTING( 0xa0, "120000" ) PORT_DIPSETTING( 0xc0, "150000" ) PORT_DIPSETTING( 0xe0, DEF_STR( None ) ) PORT_START("VOLIN1") /* Mux input - player 1 controller - handled by warpwarp_vol_r */ PORT_BIT( 0xff, 0x60, IPT_PADDLE ) PORT_MINMAX(0x14,0xac) PORT_SENSITIVITY(30) PORT_KEYDELTA(10) PORT_CENTERDELTA(0) PORT_REVERSE PORT_START("VOLIN2") /* Mux input - player 2 controller - handled by warpwarp_vol_r */ PORT_BIT( 0xff, 0x60, IPT_PADDLE ) PORT_MINMAX(0x14,0xac) PORT_SENSITIVITY(30) PORT_KEYDELTA(10) PORT_CENTERDELTA(0) PORT_REVERSE PORT_COCKTAIL INPUT_PORTS_END static INPUT_PORTS_START( cutieq ) PORT_INCLUDE( bombbee ) PORT_MODIFY("DSW1") PORT_DIPNAME( 0xe0, 0x00, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("DSW1:6,7,8") PORT_DIPSETTING( 0x00, "50000" ) PORT_DIPSETTING( 0x20, "60000" ) PORT_DIPSETTING( 0x40, "80000" ) PORT_DIPSETTING( 0x60, "100000" ) PORT_DIPSETTING( 0x80, "120000" ) PORT_DIPSETTING( 0xa0, "150000" ) PORT_DIPSETTING( 0xc0, "200000" ) PORT_DIPSETTING( 0xe0, DEF_STR( None ) ) INPUT_PORTS_END static INPUT_PORTS_START( warpwarp ) PORT_START("IN0") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_COCKTAIL PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_START1 ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_START2 ) PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_SERVICE( 0x20, IP_ACTIVE_LOW ) PORT_DIPNAME( 0x40, 0x40, DEF_STR( Cabinet ) ) PORT_DIPSETTING( 0x40, DEF_STR( Upright ) ) PORT_DIPSETTING( 0x00, DEF_STR( Cocktail ) ) PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_SERVICE1 ) PORT_START("DSW1") PORT_DIPNAME( 0x03, 0x01, DEF_STR( Coinage ) ) PORT_DIPLOCATION("DSW1:1,2") PORT_DIPSETTING( 0x03, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x01, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x02, DEF_STR( 1C_2C ) ) PORT_DIPSETTING( 0x00, DEF_STR( Free_Play ) ) PORT_DIPNAME( 0x0c, 0x04, DEF_STR( Lives ) ) PORT_DIPLOCATION("DSW1:3,4") PORT_DIPSETTING( 0x00, "2" ) PORT_DIPSETTING( 0x04, "3" ) PORT_DIPSETTING( 0x08, "4" ) PORT_DIPSETTING( 0x0c, "5" ) PORT_DIPNAME( 0x30, 0x00, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("DSW1:5,6") PORT_DIPSETTING( 0x00, "8k 30k 30k+" ) PORT_CONDITION("DSW1", 0x0c, PORTCOND_NOTEQUALS, 0x0c) PORT_DIPSETTING( 0x10, "10k 40k 40k+" ) PORT_CONDITION("DSW1", 0x0c, PORTCOND_NOTEQUALS, 0x0c) PORT_DIPSETTING( 0x20, "15k 60k 60k+" ) PORT_CONDITION("DSW1", 0x0c, PORTCOND_NOTEQUALS, 0x0c) PORT_DIPSETTING(0x30, DEF_STR( None ) ) PORT_CONDITION("DSW1", 0x0c, PORTCOND_NOTEQUALS, 0x0c) PORT_DIPSETTING( 0x00, "30k" ) PORT_CONDITION("DSW1", 0x0c, PORTCOND_EQUALS, 0x0c) PORT_DIPSETTING( 0x10, "40k" ) PORT_CONDITION("DSW1", 0x0c, PORTCOND_EQUALS, 0x0c) PORT_DIPSETTING( 0x20, "60k" ) PORT_CONDITION("DSW1", 0x0c, PORTCOND_EQUALS, 0x0c) PORT_DIPSETTING( 0x30, DEF_STR( None ) ) PORT_CONDITION("DSW1", 0x0c, PORTCOND_EQUALS, 0x0c) PORT_DIPNAME( 0x40, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("DSW1:7") PORT_DIPSETTING( 0x40, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) /* when level selection is On, press 1 to increase level */ PORT_DIPNAME( 0x80, 0x80, "Level Selection (Cheat)") PORT_DIPLOCATION("DSW1:8") PORT_DIPSETTING( 0x80, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) PORT_START("VOLIN1") /* FAKE - input port to simulate an analog stick - handled by warpwarp_vol_r */ PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_4WAY PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_4WAY PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_4WAY PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_4WAY PORT_START("VOLIN2") /* FAKE - input port to simulate an analog stick - handled by warpwarp_vol_r */ PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_4WAY PORT_COCKTAIL PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_4WAY PORT_COCKTAIL PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_4WAY PORT_COCKTAIL PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_4WAY PORT_COCKTAIL INPUT_PORTS_END /* has High Score Initials dip switch instead of rack test */ static INPUT_PORTS_START( warpwarpr ) PORT_INCLUDE( warpwarp ) PORT_MODIFY("DSW1") PORT_DIPNAME( 0x80, 0x00, "High Score Initials" ) PORT_DIPLOCATION("DSW1:8") PORT_DIPSETTING( 0x80, DEF_STR( No ) ) PORT_DIPSETTING( 0x00, DEF_STR( Yes ) ) INPUT_PORTS_END static const gfx_layout charlayout = { 8,8, RGN_FRAC(1,1), 1, { 0 }, { 0, 1, 2, 3, 4, 5, 6, 7 }, { 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8 }, 8*8 }; static GFXDECODE_START( 1k ) GFXDECODE_ENTRY( "gfx1", 0x0000, charlayout, 0, 4 ) GFXDECODE_END static GFXDECODE_START( 2k ) GFXDECODE_ENTRY( "gfx1", 0x0000, charlayout, 0, 2 ) GFXDECODE_END static GFXDECODE_START( color ) GFXDECODE_ENTRY( "gfx1", 0x0000, charlayout, 0, 256 ) GFXDECODE_END static MACHINE_CONFIG_START( geebee, warpwarp_state ) /* basic machine hardware */ MCFG_CPU_ADD("maincpu", I8080, MASTER_CLOCK/9) /* verified on pcb */ MCFG_CPU_PROGRAM_MAP(geebee_map) MCFG_CPU_IO_MAP(geebee_port_map) MCFG_CPU_VBLANK_INT("screen", irq0_line_hold) /* video hardware */ MCFG_SCREEN_ADD("screen", RASTER) MCFG_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16) MCFG_SCREEN_RAW_PARAMS(MASTER_CLOCK/3, 384, 0, 272, 264, 0, 224) MCFG_SCREEN_UPDATE(geebee) MCFG_GFXDECODE(1k) MCFG_PALETTE_LENGTH(4*2) MCFG_PALETTE_INIT(geebee) MCFG_VIDEO_START(geebee) /* sound hardware */ MCFG_SPEAKER_STANDARD_MONO("mono") MCFG_SOUND_ADD("geebee", GEEBEE, 0) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0) MACHINE_CONFIG_END static MACHINE_CONFIG_DERIVED( navarone, geebee ) /* basic machine hardware */ MCFG_GFXDECODE(2k) MCFG_PALETTE_LENGTH(2*2) MCFG_PALETTE_INIT(navarone) MCFG_VIDEO_START(navarone) MACHINE_CONFIG_END static MACHINE_CONFIG_START( bombbee, warpwarp_state ) /* basic machine hardware */ MCFG_CPU_ADD("maincpu", I8080, MASTER_CLOCK/9) /* 18.432 MHz / 9 */ MCFG_CPU_PROGRAM_MAP(bombbee_map) MCFG_CPU_VBLANK_INT("screen", irq0_line_assert) /* video hardware */ MCFG_SCREEN_ADD("screen", RASTER) MCFG_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16) MCFG_SCREEN_RAW_PARAMS(MASTER_CLOCK/3, 384, 0, 272, 264, 0, 224) MCFG_SCREEN_UPDATE(geebee) MCFG_GFXDECODE(color) MCFG_PALETTE_LENGTH(2*256+1) MCFG_PALETTE_INIT(warpwarp) MCFG_VIDEO_START(warpwarp) /* sound hardware */ MCFG_SPEAKER_STANDARD_MONO("mono") MCFG_SOUND_ADD("warpwarp", WARPWARP, 0) MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0) MACHINE_CONFIG_END static MACHINE_CONFIG_DERIVED( warpwarp, bombbee ) /* basic machine hardware */ MCFG_CPU_MODIFY("maincpu") MCFG_CPU_PROGRAM_MAP(warpwarp_map) MACHINE_CONFIG_END /*************************************************************************** Game driver(s) ***************************************************************************/ ROM_START( geebee ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "geebee.1k", 0x0000, 0x1000, CRC(8a5577e0) SHA1(356d33e19c6b4f519816ee4b65ff9b59d6c1b565) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "geebee.3a", 0x0000, 0x0400, CRC(f257b21b) SHA1(c788fd923438f1bffbff9ff3cd4c5c8b547c0c14) ) ROM_RELOAD( 0x0400, 0x0400 ) ROM_END ROM_START( geebeeb ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "1.1m", 0x0000, 0x0400, CRC(23252fc7) SHA1(433f0f435ff741a789942194356aaec53192608a) ) ROM_LOAD( "2.1p", 0x0400, 0x0400, CRC(0bc4d4ca) SHA1(46028ce1dbf46e49b921cfabec78cded914af358) ) ROM_LOAD( "3.1s", 0x0800, 0x0400, CRC(7899b4c1) SHA1(70f609f9873f1a4d9c8a90361c7519bdd24ad9ea) ) ROM_LOAD( "4.1t", 0x0c00, 0x0400, CRC(0b6e6fcb) SHA1(e7c3e8a13e3d2be6cfb6675fb57cc4a2fda6bec2) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "geebee.3a", 0x0000, 0x0400, CRC(f257b21b) SHA1(c788fd923438f1bffbff9ff3cd4c5c8b547c0c14) ) ROM_RELOAD( 0x0400, 0x0400 ) ROM_END ROM_START( geebeeg ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "geebee.1k", 0x0000, 0x1000, CRC(8a5577e0) SHA1(356d33e19c6b4f519816ee4b65ff9b59d6c1b565) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "geebeeg.3a", 0x0000, 0x0400, CRC(a45932ba) SHA1(48f70742c42a9377f31fac3a1e43123751e57656) ) ROM_RELOAD( 0x0400, 0x0400 ) ROM_END ROM_START( navarone ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "navalone.p1", 0x0000, 0x0800, CRC(5a32016b) SHA1(d856d069eba470a81341de0bf47eca2a629a69a6) ) ROM_LOAD( "navalone.p2", 0x0800, 0x0800, CRC(b1c86fe3) SHA1(0293b742806c1517cb126443701115a3427fc60a) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "navalone.chr", 0x0000, 0x0800, CRC(b26c6170) SHA1(ae0aec2b60e1fd3b212e311afb1c588b2b286433) ) ROM_END ROM_START( kaitein ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "kaitein.p1", 0x0000, 0x0800, CRC(d88e10ae) SHA1(76d6cd46b6e59e528e7a8fff9965375a1446a91d) ) ROM_LOAD( "kaitein.p2", 0x0800, 0x0800, CRC(aa9b5763) SHA1(64a6c8f25b0510841dcce0b57505731aa0deeda7) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "kaitein.chr", 0x0000, 0x0800, CRC(3125af4d) SHA1(9e6b161636665ee48d6bde2d5fc412fde382c687) ) ROM_END ROM_START( kaitei ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "kaitei_7.1k", 0x0000, 0x0800, CRC(32f70d48) SHA1(c5ae606df1d0e513daea909f5474309a176096c1) ) ROM_RELOAD( 0x0800, 0x0800 ) ROM_LOAD( "kaitei_1.1m", 0x1000, 0x0400, CRC(9a7ab3b9) SHA1(94a82ba66e51c8203ec61c9320edbddbb6462d33) ) ROM_LOAD( "kaitei_2.1p", 0x1400, 0x0400, CRC(5eeb0fff) SHA1(91cb84a9af8e4df4e6c896e7655199328b7da30b) ) ROM_LOAD( "kaitei_3.1s", 0x1800, 0x0400, CRC(5dff4df7) SHA1(c179c93a559a0d18db3092c842634de02f3f03ea) ) ROM_LOAD( "kaitei_4.1t", 0x1c00, 0x0400, CRC(e5f303d6) SHA1(6dd57e0b17f51d101c6c5dbfeadb7418098cc440) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "kaitei_5.bin", 0x0000, 0x0400, CRC(60fdb795) SHA1(723e635eed9937a28bee0b7978413984651ee87f) ) ROM_LOAD( "kaitei_6.bin", 0x0400, 0x0400, CRC(21399ace) SHA1(0ad49be2c9bdab2f9dc41c7348d1d4b4b769e3c4) ) ROM_END ROM_START( sos ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "sos.p1", 0x0000, 0x0800, CRC(f70bdafb) SHA1(e71d552ccc9adad48225bdb4d62c31c5741a3e95) ) ROM_LOAD( "sos.p2", 0x0800, 0x0800, CRC(58e9c480) SHA1(0eeb5982183d0e9f9dbae04839b604a0c22b420e) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "sos.chr", 0x0000, 0x0800, CRC(66f983e4) SHA1(b3cf8bff4ac6b554d3fc06eeb8227b3b2a0dd554) ) ROM_END ROM_START( bombbee ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "bombbee.1k", 0x0000, 0x2000, CRC(9f8cd7af) SHA1(0d6e1ee5519660d1498eb7a093872ed5034423f2) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "bombbee.4c", 0x0000, 0x0800, CRC(5f37d569) SHA1(d5e3fb4c5a1612a6e568c8970161b0290b88993f) ) ROM_END ROM_START( cutieq ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "cutieq.1k", 0x0000, 0x2000, CRC(6486cdca) SHA1(914c36487fba2dd57c3fd1f011b2225d2baac2bf) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "cutieq.4c", 0x0000, 0x0800, CRC(0e1618c9) SHA1(456e9b3d6bae8b4af7778a38e4f40bb6736b0690) ) ROM_END ROM_START( warpwarp ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "ww1_prg1.s10", 0x0000, 0x1000, CRC(f5262f38) SHA1(1c64d0282b0a209390a548ceeaaf8b7b55e50896) ) ROM_LOAD( "ww1_prg2.s8", 0x1000, 0x1000, CRC(de8355dd) SHA1(133d137711d79aaeb45cd3ee041c0be3b73e1b2f) ) ROM_LOAD( "ww1_prg3.s4", 0x2000, 0x1000, CRC(bdd1dec5) SHA1(bb3d9d1500e31bb271a394facaec7adc3c987e5e) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "ww1_chg1.s12", 0x0000, 0x0800, CRC(380994c8) SHA1(0cdf6a05db52c423365bff9c9df6d93ac885794e) ) ROM_END ROM_START( warpwarpr ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "g-09601.2r", 0x0000, 0x1000, CRC(916ffa35) SHA1(bca2087f8b78a128cdffc55db9814854b72daab5) ) ROM_LOAD( "g-09602.2m", 0x1000, 0x1000, CRC(398bb87b) SHA1(74373336288dc13d59e6f7e7c718aa51d857b087) ) ROM_LOAD( "g-09603.1p", 0x2000, 0x1000, CRC(6b962fc4) SHA1(0291d0c574a1048e52121ca57e01098bff04da40) ) ROM_LOAD( "g-09613.1t", 0x3000, 0x0800, CRC(60a67e76) SHA1(af65e7bf16a5e69fee05c0134e3b8d5bca142402) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "g-9611.4c", 0x0000, 0x0800, CRC(00e6a326) SHA1(67b7ab5b7b2c9a97d4d690d88561da48b86bc66e) ) ROM_END ROM_START( warpwarpr2 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "g-09601.2r", 0x0000, 0x1000, CRC(916ffa35) SHA1(bca2087f8b78a128cdffc55db9814854b72daab5) ) ROM_LOAD( "g-09602.2m", 0x1000, 0x1000, CRC(398bb87b) SHA1(74373336288dc13d59e6f7e7c718aa51d857b087) ) ROM_LOAD( "g-09603.1p", 0x2000, 0x1000, CRC(6b962fc4) SHA1(0291d0c574a1048e52121ca57e01098bff04da40) ) ROM_LOAD( "g-09612.1t", 0x3000, 0x0800, CRC(b91e9e79) SHA1(378323d83c550b3acabc83dba946ab089b9195cb) ) ROM_REGION( 0x800, "gfx1", 0 ) ROM_LOAD( "g-9611.4c", 0x0000, 0x0800, CRC(00e6a326) SHA1(67b7ab5b7b2c9a97d4d690d88561da48b86bc66e) ) ROM_END static DRIVER_INIT( geebee ) { warpwarp_state *state = machine.driver_data(); state->m_handle_joystick = 0; state->m_ball_pen = 1; state->m_ball_sizex = 4; state->m_ball_sizey = 4; } static DRIVER_INIT( navarone ) { warpwarp_state *state = machine.driver_data(); state->m_handle_joystick = 1; state->m_ball_pen = 1; state->m_ball_sizex = 4; state->m_ball_sizey = 4; } static DRIVER_INIT( kaitein ) { warpwarp_state *state = machine.driver_data(); state->m_handle_joystick = 1; state->m_ball_pen = 1; state->m_ball_sizex = 1; state->m_ball_sizey = 16; } static DRIVER_INIT( kaitei ) { warpwarp_state *state = machine.driver_data(); state->m_handle_joystick = 0; state->m_ball_pen = 1; state->m_ball_sizex = 1; state->m_ball_sizey = 16; } static DRIVER_INIT( sos ) { warpwarp_state *state = machine.driver_data(); state->m_handle_joystick = 1; state->m_ball_pen = 0; state->m_ball_sizex = 4; state->m_ball_sizey = 2; } static DRIVER_INIT( bombbee ) { warpwarp_state *state = machine.driver_data(); state->m_handle_joystick = 0; state->m_ball_pen = 0x200; state->m_ball_sizex = 4; state->m_ball_sizey = 4; } static DRIVER_INIT( warpwarp ) { warpwarp_state *state = machine.driver_data(); state->m_handle_joystick = 1; state->m_ball_pen = 0x200; state->m_ball_sizex = 4; state->m_ball_sizey = 4; } /* B & W games */ GAMEL(1978, geebee, 0, geebee, geebee, geebee, ROT90, "Namco", "Gee Bee (Japan)", 0, layout_geebee ) GAMEL(1978, geebeeb, geebee, geebee, geebeeb, geebee, ROT90, "Namco (F.lli Bertolino license)", "Gee Bee (Europe)", 0, layout_geebee ) // Fratelli Bertolino GAMEL(1978, geebeeg, geebee, geebee, geebee, geebee, ROT90, "Namco (Gremlin license)", "Gee Bee (US)", 0, layout_geebee ) GAMEL(1980, navarone, 0, navarone, navarone, navarone, ROT90, "Namco", "Navarone", GAME_IMPERFECT_SOUND, layout_navarone ) GAME( 1980, kaitein, kaitei, navarone, kaitein, kaitein, ROT90, "K.K. Tokki (Namco license)", "Kaitei Takara Sagashi (Namco license)", 0 ) // pretty sure it didn't have a color overlay GAME( 1980, kaitei, 0, navarone, kaitei, kaitei, ROT90, "K.K. Tokki", "Kaitei Takara Sagashi", 0 ) // " GAMEL(1980, sos, 0, navarone, sos, sos, ROT90, "Namco", "SOS", GAME_IMPERFECT_SOUND, layout_sos ) // developed by Shoei? /* Color games */ GAME( 1979, bombbee, 0, bombbee, bombbee, bombbee, ROT90, "Namco", "Bomb Bee", 0 ) GAME( 1979, cutieq, 0, bombbee, cutieq, bombbee, ROT90, "Namco", "Cutie Q", 0 ) GAME( 1981, warpwarp, 0, warpwarp, warpwarp, warpwarp, ROT90, "Namco", "Warp & Warp", 0 ) GAME( 1981, warpwarpr, warpwarp, warpwarp, warpwarpr,warpwarp, ROT90, "Namco (Rock-Ola license)", "Warp Warp (Rock-Ola set 1)", 0 ) GAME( 1981, warpwarpr2, warpwarp, warpwarp, warpwarpr,warpwarp, ROT90, "Namco (Rock-Ola license)", "Warp Warp (Rock-Ola set 2)", 0 )