/* Malzak Produced by Kitronix, cabinet artwork suggests it was released in 1980. Was sold around New Zealand in the early '80s. Sold about 500 sets, fairly decent for the time. There are more games on this hardware, as far as I am aware. Driver by Reip, Barry Rodewald SAA 5050 display code "borrowed" from the Philips 2000T/2000M driver in MESS Basic memory map 0x0000 - 0x0fff | S2650 code [malzak.5, malzak.4, malzak.2 (data only)] 0x1000 - 0x13ff | Work RAM 0x1400 - 0x14ff | S2636 #1 video 0x1500 - 0x15ff | S2636 #2 video 0x1600 - 0x16ff | Playfield gfx 0x1700 - 0x17ff | Work RAM - contains hiscore table, coin count 0x1800 - 0x1fff | SAA 5050 video RAM TODO - I/O ports (0x00 for sprite->background collisions) sound (2x SN76477) playfield graphics may be banked, tiles above 0x1f are incorrect sprite->sprite collisions aren't quite perfect (you can often fly through flying missiles) Notes: - Test mode in Malzak II should be enabled by setting a POT to position '4' and pressing button 1 three times. Then the POT is set to position '1' to go back to the game. Guru Notes: This board looks like an early proto, it's hand etched, with a ton of wire mods. I'm told the game is kind of like Scramble. It's probably _ultra_ rare too. The board looks like pure crap actually, with lot's of resistors jumpering tracks and a partial harness that is wired directly to the logic chips which has been *ruthlessly* chopped off! Here's what I can see..... EPROMs (x5, dumped, MALZAK.1 by itself, the other 4 grouped together) S 8039 2650AI (DIP 40) S 8051 2636N (DIP 40) S 8112 2636N (DIP 40) 5101 (SRAM, x3) 6MHz Xtal 2114 (SRAM, x4) SAA 5020 (DIP 24) SAA 5050 (DIP 28) SN76477 (x2, DIP28) INS/DP8212N P8212 (x2, DIP 24) plenty of logic chips, resistors, caps etc Note: There's no PALs or PROMs */ #include "driver.h" #include "video/s2636.h" #include "cpu/s2650/s2650.h" #include "sound/sn76477.h" #define SAA5050_VBLANK 2500 static int malzak_bank1; extern int malzak_x; extern int malzak_y; extern UINT8 *saa5050_vidram; /* Video RAM for SAA 5050 */ extern UINT8 *malzak_s2636_0_ram; extern UINT8 *malzak_s2636_1_ram; // in video/malzak.c VIDEO_START( malzak ); VIDEO_UPDATE( malzak ); WRITE8_HANDLER( malzak_playfield_w ); static READ8_HANDLER( fake_VRLE_r ) { return (malzak_s2636_0_ram[0xcb] & 0x3f) + (video_screen_get_vblank(space->machine->primary_screen)*0x40); } static READ8_HANDLER( bank_r ) { UINT8* bank = memory_region(space->machine, "user2"); return bank[offset + (malzak_bank1 * 0x0400)]; } static READ8_HANDLER( s2636_portA_r ) { // POT switch position, read from port A of the first S2636 // Not sure of the correct values to return, but these should // do based on the game code. switch(input_port_read(space->machine, "POT")) { case 0: // Normal play return 0xf0; case 1: return 0x90; case 2: return 0x70; case 3: // Change settings return 0x00; default: return 0xf0; } } static ADDRESS_MAP_START( malzak_map, ADDRESS_SPACE_PROGRAM, 8 ) ADDRESS_MAP_GLOBAL_MASK(0x7fff) AM_RANGE(0x0000, 0x0bff) AM_ROM AM_RANGE(0x0c00, 0x0fff) AM_READ(bank_r) AM_RANGE(0x1000, 0x10ff) AM_MIRROR(0x6000) AM_RAM AM_RANGE(0x1100, 0x11ff) AM_MIRROR(0x6000) AM_RAM AM_RANGE(0x1200, 0x12ff) AM_MIRROR(0x6000) AM_RAM AM_RANGE(0x1300, 0x13ff) AM_MIRROR(0x6000) AM_RAM AM_RANGE(0x14cb, 0x14cb) AM_MIRROR(0x6000) AM_READ(fake_VRLE_r) AM_RANGE(0x1400, 0x14ff) AM_MIRROR(0x6000) AM_RAM AM_BASE(&malzak_s2636_0_ram) AM_RANGE(0x1500, 0x15ff) AM_MIRROR(0x6000) AM_RAM AM_BASE(&malzak_s2636_1_ram) AM_RANGE(0x1600, 0x16ff) AM_MIRROR(0x6000) AM_RAM_WRITE(malzak_playfield_w) AM_RANGE(0x1700, 0x17ff) AM_MIRROR(0x6000) AM_RAM AM_RANGE(0x1800, 0x1fff) AM_MIRROR(0x6000) AM_RAM AM_BASE(&saa5050_vidram) AM_RANGE(0x2000, 0x2fff) AM_ROM AM_RANGE(0x4000, 0x4fff) AM_ROM AM_RANGE(0x6000, 0x6fff) AM_ROM ADDRESS_MAP_END static ADDRESS_MAP_START( malzak2_map, ADDRESS_SPACE_PROGRAM, 8 ) ADDRESS_MAP_GLOBAL_MASK(0x7fff) AM_RANGE(0x0000, 0x0bff) AM_ROM AM_RANGE(0x0c00, 0x0fff) AM_READ(bank_r) AM_RANGE(0x1000, 0x10ff) AM_MIRROR(0x6000) AM_RAM AM_RANGE(0x1100, 0x11ff) AM_MIRROR(0x6000) AM_RAM AM_RANGE(0x1200, 0x12ff) AM_MIRROR(0x6000) AM_RAM AM_RANGE(0x1300, 0x13ff) AM_MIRROR(0x6000) AM_RAM AM_RANGE(0x14cb, 0x14cb) AM_MIRROR(0x6000) AM_READ(fake_VRLE_r) AM_RANGE(0x14cc, 0x14cc) AM_MIRROR(0x6000) AM_READ(s2636_portA_r) AM_RANGE(0x1400, 0x14ff) AM_MIRROR(0x6000) AM_RAM AM_BASE(&malzak_s2636_0_ram) AM_RANGE(0x1500, 0x15ff) AM_MIRROR(0x6000) AM_RAM AM_BASE(&malzak_s2636_1_ram) AM_RANGE(0x1600, 0x16ff) AM_MIRROR(0x6000) AM_RAM_WRITE(malzak_playfield_w) AM_RANGE(0x1700, 0x17ff) AM_MIRROR(0x6000) AM_RAM AM_BASE(&generic_nvram) AM_SIZE(&generic_nvram_size) AM_RANGE(0x1800, 0x1fff) AM_MIRROR(0x6000) AM_RAM AM_BASE(&saa5050_vidram) AM_RANGE(0x2000, 0x2fff) AM_ROM AM_RANGE(0x4000, 0x4fff) AM_ROM AM_RANGE(0x6000, 0x6fff) AM_ROM ADDRESS_MAP_END static READ8_HANDLER( s2650_data_r ) { popmessage("S2650 data port read"); return 0xff; } static WRITE8_HANDLER( port40_w ) { // Bit 0 is constantly set high during gameplay // Bit 4 is set high, then low, upon death // Bit 1 is set high on boot, and on the title screens. // Bits 1-3 are all set high upon death, until the game continues // Bit 6 is used only in Malzak II, and is set high after checking // the selected version // logerror("S2650 [0x%04x]: port 0x40 write: 0x%02x\n",cpu_get_pc(space->machine->cpu[0]),data); if(data & 0x40) malzak_bank1 = 1; else malzak_bank1 = 0; } static WRITE8_HANDLER( port60_w ) { malzak_x = data; // logerror("I/O: port 0x60 write 0x%02x\n",data); } static WRITE8_HANDLER( portc0_w ) { malzak_y = data; // logerror("I/O: port 0xc0 write 0x%02x\n",data); } static READ8_HANDLER( collision_r ) { // High 4 bits seem to refer to the row affected. static int counter; if(++counter > 15) counter = 0; // logerror("I/O port 0x00 read\n"); return 0xd0 + counter; } static ADDRESS_MAP_START( malzak_io_map, ADDRESS_SPACE_IO, 8 ) AM_RANGE(0x00, 0x00) AM_READ(collision_r) // returns where a collision can occur. AM_RANGE(0x40, 0x40) AM_WRITE(port40_w) // possibly sound codes for dual SN76477s AM_RANGE(0x60, 0x60) AM_WRITE(port60_w) // possibly playfield scroll X offset AM_RANGE(0x80, 0x80) AM_READ_PORT("IN0") //controls AM_RANGE(0xa0, 0xa0) AM_WRITE(SMH_NOP) // echoes I/O port read from port 0x80 AM_RANGE(0xc0, 0xc0) AM_WRITE(portc0_w) // possibly playfield row selection for writing and/or collisions AM_RANGE(S2650_DATA_PORT, S2650_DATA_PORT) AM_READ(s2650_data_r) // read upon death AM_RANGE(S2650_SENSE_PORT, S2650_SENSE_PORT) AM_READ_PORT("SENSE") ADDRESS_MAP_END static INPUT_PORTS_START( malzak ) /* Malzak has an 8-way stick and only one button (firing and bomb dropping on the same button) */ PORT_START("IN0") /* I/O port 0x80 */ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_START1 ) PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_START2 ) PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_START("POT") /* No POT switch on Malzak as far as I know */ PORT_START("SENSE") /* SENSE */ PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_VBLANK ) INPUT_PORTS_END static INPUT_PORTS_START( malzak2 ) /* Same as Malzak, but with additional POT switch, and possibly a reset button too. */ PORT_START("IN0") /* I/O port 0x80 */ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_START1 ) PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_START2 ) PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_START("POT") /* Fake DIP switch to handle the POT switch */ PORT_DIPNAME( 0x03, 0x00, "POT switch position" ) PORT_DIPSETTING( 0x00, "1" ) // Normal play PORT_DIPSETTING( 0x01, "2" ) PORT_DIPSETTING( 0x02, "3" ) PORT_DIPSETTING( 0x03, "4" ) // Change settings PORT_START("SENSE") /* SENSE */ PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_VBLANK ) INPUT_PORTS_END static const gfx_layout charlayout = { 16,16, RGN_FRAC(1,1), 1, { 0 }, { 7, 6, 5, 4, 3, 2, 1, 0, 15, 14, 13, 12, 11, 10, 9, 8 }, { 0*16, 1*16, 2*16, 3*16, 4*16, 5*16, 6*16, 7*16, 8*16, 9*16, 10*16, 11*16, 12*16, 13*16, 14*16, 15*16 }, // { 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8 }, 16*16 // 8*8 }; static const gfx_layout saa5050_charlayout = { 6, 10, 256, 1, { 0 }, { 2, 3, 4, 5, 6, 7 }, { 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8, 8*8, 9*8 }, 8 * 10 }; static const gfx_layout saa5050_hilayout = { 6, 10, 256, 1, { 0 }, { 2, 3, 4, 5, 6, 7 }, { 0*8, 0*8, 1*8, 1*8, 2*8, 2*8, 3*8, 3*8, 4*8, 4*8 }, 8 * 10 }; static const gfx_layout saa5050_lolayout = { 6, 10, 256, 1, { 0 }, { 2, 3, 4, 5, 6, 7 }, { 5*8, 5*8, 6*8, 6*8, 7*8, 7*8, 8*8, 8*8, 9*8, 9*8 }, 8 * 10 }; static GFXDECODE_START( malzak ) GFXDECODE_ENTRY( "gfx1", 0x0000, charlayout, 0, 16 ) GFXDECODE_ENTRY( "gfx2", 0x0000, saa5050_charlayout, 0, 128 ) GFXDECODE_ENTRY( "gfx2", 0x0000, saa5050_hilayout, 0, 128 ) GFXDECODE_ENTRY( "gfx2", 0x0000, saa5050_lolayout, 0, 128 ) GFXDECODE_END static PALETTE_INIT( malzak ) { int i; for (i = 0; i < 8*8; i++) { palette_set_color_rgb(machine, i * 2 + 0, pal1bit(i >> 3), pal1bit(i >> 4), pal1bit(i >> 5)); palette_set_color_rgb(machine, i * 2 + 1, pal1bit(i >> 0), pal1bit(i >> 1), pal1bit(i >> 2)); } } static const sn76477_interface sn76477_intf = { 0, /* N/C */ /* 4 noise_res */ 0, /* N/C */ /* 5 filter_res */ 0, /* N/C */ /* 6 filter_cap */ 0, /* N/C */ /* 7 decay_res */ 0, /* N/C */ /* 8 attack_decay_cap */ RES_K(100), /* 10 attack_res */ RES_K(56), /* 11 amplitude_res */ RES_K(10), /* 12 feedback_res */ 0, /* N/C */ /* 16 vco_voltage */ CAP_U(0.1), /* 17 vco_cap */ RES_K(8.2), /* 18 vco_res */ 5.0, /* 19 pitch_voltage */ RES_K(120), /* 20 slf_res */ CAP_U(1.0), /* 21 slf_cap */ 0, /* N/C */ /* 23 oneshot_cap */ 0, /* N/C */ /* 24 oneshot_res */ 0, /* 22 vco */ 1, /* 26 mixer A */ 1, /* 25 mixer B */ 1, /* 27 mixer C */ 1, /* 1 envelope 1 */ 1, /* 28 envelope 2 */ 1 /* 9 enable */ }; static MACHINE_DRIVER_START( malzak ) /* basic machine hardware */ MDRV_CPU_ADD("maincpu", S2650, 3800000/4) MDRV_CPU_PROGRAM_MAP(malzak_map,0) MDRV_CPU_IO_MAP(malzak_io_map,0) /* video hardware */ MDRV_SCREEN_ADD("screen", RASTER) MDRV_SCREEN_REFRESH_RATE(50) //MDRV_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(SAA5050_VBLANK)) MDRV_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16) MDRV_SCREEN_SIZE(240, 256) /* vert size is a guess */ MDRV_SCREEN_VISIBLE_AREA(0, 239, 0, 239) MDRV_GFXDECODE(malzak) MDRV_PALETTE_LENGTH(128) MDRV_PALETTE_INIT(malzak) // MDRV_MACHINE_RESET(malzak) MDRV_VIDEO_START(malzak) MDRV_VIDEO_UPDATE(malzak) /* sound hardware */ MDRV_SPEAKER_STANDARD_MONO("mono") MDRV_SOUND_ADD("sn1", SN76477, 0) MDRV_SOUND_CONFIG(sn76477_intf) MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25) MDRV_SOUND_ADD("sn2", SN76477, 0) MDRV_SOUND_CONFIG(sn76477_intf) MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25) MACHINE_DRIVER_END static MACHINE_DRIVER_START( malzak2 ) MDRV_IMPORT_FROM( malzak ) MDRV_CPU_MODIFY( "maincpu" ) MDRV_CPU_PROGRAM_MAP(malzak2_map,0) MDRV_NVRAM_HANDLER( generic_0fill ) MACHINE_DRIVER_END ROM_START( malzak ) ROM_REGION( 0x8000, "maincpu", 0 ) ROM_LOAD( "malzak.5", 0x0000, 0x0800, CRC(75355c98) SHA1(7036ed5d9ee38585b1a6bc204d410d5fb5ddd81f) ) ROM_CONTINUE( 0x2000, 0x0800 ) ROM_LOAD( "malzak.4", 0x0800, 0x0400, CRC(744c81e3) SHA1(c08d6df3cf2808a5f99d8247fc19a59be88121a9) ) ROM_CONTINUE( 0x4000, 0x0c00 ) // Terrain data ROM_LOAD( "malzak.3", 0x4400, 0x0800, CRC(b947229e) SHA1(37b88b5aa91a483fcfe60a9bdd67a66f6378c487) ) // Screen data ROM_REGION(0x0800, "user2", 0) ROM_LOAD( "malzak.2", 0x0000, 0x0800, CRC(2a12ad67) SHA1(f89a50b62311a170004c061abd8dedc3ebd84748) ) ROM_REGION( 0x0800, "gfx1", ROMREGION_DISPOSE ) ROM_LOAD( "malzak.1", 0x0000, 0x0800, CRC(74d5ff7b) SHA1(cae326370dc83b86542f9d070e2dc91b1b833356) ) ROM_REGION(0x01000, "gfx2",0) // SAA5050 internal character ROM ROM_LOAD("p2000.chr", 0x0140, 0x08c0, BAD_DUMP CRC(78c17e3e) SHA1(4e1c59dc484505de1dc0b1ba7e5f70a54b0d4ccc) ) ROM_END ROM_START( malzak2 ) ROM_REGION( 0x8000, "maincpu", 0 ) ROM_LOAD( "malz1a.bin", 0x000000, 0x000800, CRC(5c3cb14c) SHA1(2d3b5703cb9a47e34aa593f0e8d42d4e67c167d9) ) ROM_CONTINUE( 0x2000, 0x0800 ) ROM_LOAD( "malz2b.bin", 0x0800, 0x0400, CRC(2af8aace) SHA1(7aaf03d4848c2cce72b2b3729661e7826834ad44) ) ROM_CONTINUE( 0x4000, 0x0400 ) ROM_CONTINUE( 0x2800, 0x0400 ) ROM_CONTINUE( 0x6000, 0x0400 ) // Terrain data ROM_LOAD( "malz3c.bin", 0x4400, 0x0800, CRC(54d6a02e) SHA1(80c550d74da770689fe451cb0ee8e550a63b1b96) ) // Screen data ROM_REGION(0x0800, "user2", 0) ROM_LOAD( "malz4d.bin", 0x0000, 0x0800, CRC(5c6ca415) SHA1(e7571519ac7911507d2c1cf975a7663f41321cb9) ) ROM_REGION( 0x0800, "gfx1", ROMREGION_DISPOSE ) ROM_LOAD( "malzak.1", 0x0000, 0x0800, CRC(74d5ff7b) SHA1(cae326370dc83b86542f9d070e2dc91b1b833356) ) ROM_REGION(0x01000, "gfx2",0) // SAA5050 internal character ROM ROM_LOAD("p2000.chr", 0x0140, 0x08c0, BAD_DUMP CRC(78c17e3e) SHA1(4e1c59dc484505de1dc0b1ba7e5f70a54b0d4ccc) ) ROM_END GAME( 19??, malzak, 0, malzak, malzak, 0, ROT0, "Kitronix", "Malzak", GAME_NOT_WORKING | GAME_NO_SOUND | GAME_IMPERFECT_GRAPHICS ) GAME( 19??, malzak2, malzak, malzak2, malzak2, 0, ROT0, "Kitronix", "Malzak II", GAME_NOT_WORKING | GAME_NO_SOUND | GAME_IMPERFECT_GRAPHICS )