Previous 199869 Revisions Next

r32833 Monday 20th October, 2014 at 11:03:35 UTC by David Haywood
tnzs.c - use bankdev
[src/mame/drivers]tnzs.c
[src/mame/includes]tnzs.h
[src/mame/machine]tnzs.c

trunk/src/mame/drivers/tnzs.c
r32832r32833
744744
745745static ADDRESS_MAP_START( main_map, AS_PROGRAM, 8, tnzs_state )
746746   AM_RANGE(0x0000, 0x7fff) AM_ROM
747   AM_RANGE(0x8000, 0xbfff) AM_READWRITE( tnzs_ramrom_bank_r, tnzs_ramrom_bank_w ) /* ROM + RAM */
747   AM_RANGE(0x8000, 0xbfff) AM_DEVICE("mainbank", address_map_bank_device, amap8)
748748   AM_RANGE(0xc000, 0xcfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodelow_r8, spritecodelow_w8)
749749   AM_RANGE(0xd000, 0xdfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodehigh_r8, spritecodehigh_w8)
750750   AM_RANGE(0xe000, 0xefff) AM_RAM AM_SHARE("share1")
r32832r32833
760760
761761static ADDRESS_MAP_START( cpu0_type2, AS_PROGRAM, 8, tnzs_state )
762762   AM_RANGE(0x0000, 0x7fff) AM_ROM
763   AM_RANGE(0x8000, 0xbfff) AM_READWRITE( tnzs_ramrom_bank_r, tnzs_ramrom_bank_w ) /* ROM + RAM */
763   AM_RANGE(0x8000, 0xbfff) AM_DEVICE("mainbank", address_map_bank_device, amap8)
764764   AM_RANGE(0xc000, 0xcfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodelow_r8, spritecodelow_w8)
765765   AM_RANGE(0xd000, 0xdfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodehigh_r8, spritecodehigh_w8)
766766   AM_RANGE(0xe000, 0xefff) AM_RAM AM_SHARE("share1")
r32832r32833
772772   AM_RANGE(0xf800, 0xfbff) AM_WRITENOP
773773ADDRESS_MAP_END
774774
775
775776static ADDRESS_MAP_START( sub_map, AS_PROGRAM, 8, tnzs_state )
776777   AM_RANGE(0x0000, 0x7fff) AM_ROM
777778   AM_RANGE(0x8000, 0x9fff) AM_ROMBANK("subbank")
r32832r32833
863864
864865static ADDRESS_MAP_START( jpopnics_main_map, AS_PROGRAM, 8, tnzs_state )
865866   AM_RANGE(0x0000, 0x7fff) AM_ROM
866   AM_RANGE(0x8000, 0xbfff) AM_READWRITE( tnzs_ramrom_bank_r, tnzs_ramrom_bank_w )
867   AM_RANGE(0x8000, 0xbfff) AM_DEVICE("mainbank", address_map_bank_device, amap8)
867868   AM_RANGE(0xc000, 0xcfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodelow_r8, spritecodelow_w8)
868869   AM_RANGE(0xd000, 0xdfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodehigh_r8, spritecodehigh_w8)
869870   AM_RANGE(0xe000, 0xefff) AM_RAM AM_SHARE("share1") /* WORK RAM (shared by the 2 z80's) */
r32832r32833
897898   AM_RANGE(0xf000, 0xf003) AM_READ(arknoid2_sh_f000_r)
898899ADDRESS_MAP_END
899900
901/* RAM/ROM bank that maps at 0x8000-0xbfff on maincpu */
902static ADDRESS_MAP_START( mainbank_map, AS_PROGRAM, 8, tnzs_state )
903   AM_RANGE(0x00000, 0x07fff) AM_RAM // instead of the first two banks of ROM being repeated redundantly the hardware maps RAM here
904   AM_RANGE(0x08000, 0x1ffff) AM_ROM AM_REGION(":maincpu", 0x8000)
905ADDRESS_MAP_END
900906
907MACHINE_CONFIG_FRAGMENT( tnzs_mainbank )
908   MCFG_DEVICE_ADD("mainbank", ADDRESS_MAP_BANK, 0)
909   MCFG_DEVICE_PROGRAM_MAP(mainbank_map)
910   MCFG_ADDRESS_MAP_BANK_ENDIANNESS(ENDIANNESS_LITTLE)
911   MCFG_ADDRESS_MAP_BANK_DATABUS_WIDTH(8)
912   MCFG_ADDRESS_MAP_BANK_ADDRBUS_WIDTH(17)
913   MCFG_ADDRESS_MAP_BANK_STRIDE(0x4000)
914MACHINE_CONFIG_END
915
901916#define COMMON_IN2\
902917   PORT_START("IN2")\
903918   PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_SERVICE1 )\
r32832r32833
15421557   MCFG_CPU_PROGRAM_MAP(sub_map)
15431558   MCFG_CPU_VBLANK_INT_DRIVER("screen", tnzs_state,  irq0_line_hold)
15441559
1560   MCFG_FRAGMENT_ADD(tnzs_mainbank)
1561
15451562   MCFG_QUANTUM_PERFECT_CPU("maincpu")
15461563
15471564   MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs)
r32832r32833
15881605   MCFG_CPU_PROGRAM_MAP(sub_map)
15891606   MCFG_CPU_VBLANK_INT_DRIVER("screen", tnzs_state,  irq0_line_hold)
15901607
1608   MCFG_FRAGMENT_ADD(tnzs_mainbank)
1609
15911610   MCFG_QUANTUM_PERFECT_CPU("maincpu")
15921611
15931612   MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs)
r32832r32833
16361655   MCFG_CPU_ADD("mcu", I8742, 12000000/2)  /* 400KHz ??? - Main board Crystal is 12MHz */
16371656   MCFG_CPU_IO_MAP(i8742_io_map)
16381657
1658   MCFG_FRAGMENT_ADD(tnzs_mainbank)
1659
16391660   MCFG_QUANTUM_PERFECT_CPU("maincpu")
16401661
16411662   MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs)
r32832r32833
16801701   MCFG_CPU_PROGRAM_MAP(sub_map)
16811702   MCFG_CPU_VBLANK_INT_DRIVER("screen", tnzs_state,  irq0_line_hold)
16821703
1704   MCFG_FRAGMENT_ADD(tnzs_mainbank)
1705
16831706   MCFG_QUANTUM_PERFECT_CPU("maincpu")
16841707
16851708   MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs)
r32832r32833
17241747   MCFG_CPU_PROGRAM_MAP(kageki_sub_map)
17251748   MCFG_CPU_VBLANK_INT_DRIVER("screen", tnzs_state,  irq0_line_hold)
17261749
1750   MCFG_FRAGMENT_ADD(tnzs_mainbank)
1751
17271752   MCFG_QUANTUM_PERFECT_CPU("maincpu")
17281753
17291754   MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs)
r32832r32833
17801805   MCFG_CPU_PROGRAM_MAP(tnzsb_cpu2_map)
17811806   MCFG_CPU_IO_MAP(tnzsb_io_map)
17821807
1808   MCFG_FRAGMENT_ADD(tnzs_mainbank)
1809
17831810   MCFG_QUANTUM_PERFECT_CPU("maincpu")
17841811
17851812   MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs)
r32832r32833
18441871   MCFG_CPU_PROGRAM_MAP(jpopnics_sub_map)
18451872   MCFG_CPU_VBLANK_INT_DRIVER("screen", tnzs_state,  irq0_line_hold)
18461873
1874   MCFG_FRAGMENT_ADD(tnzs_mainbank)
1875
18471876   MCFG_QUANTUM_PERFECT_CPU("maincpu")
18481877
1849   MCFG_MACHINE_START_OVERRIDE(tnzs_state,jpopnics)
1878   MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs_common)
18501879   MCFG_MACHINE_RESET_OVERRIDE(tnzs_state,jpopnics)
18511880
18521881   MCFG_DEVICE_ADD("spritegen", SETA001_SPRITE, 0)
r32832r32833
26312660
26322661
26332662//    YEAR, NAME,      PARENT,   MACHINE,  INPUT,    INIT,     MONITOR,COMPANY,FULLNAME,FLAGS
2634GAME( 1987, plumppop,  0,        drtoppel, plumppop, tnzs_state, plumpop,  ROT0,   "Taito Corporation", "Plump Pop (Japan)", 0 )
2635GAME( 1987, extrmatn,  0,        arknoid2, extrmatn, tnzs_state, extrmatn, ROT270, "Taito Corporation Japan", "Extermination (World)", 0 )
2636GAME( 1987, extrmatnu, extrmatn, arknoid2, extrmatn, tnzs_state, extrmatn, ROT270, "Taito (World Games license)", "Extermination (US)", 0 )
2637GAME( 1987, extrmatnj, extrmatn, arknoid2, extrmatn, tnzs_state, extrmatn, ROT270, "Taito Corporation", "Extermination (Japan)", 0 )
2638GAME( 1987, arknoid2,  0,        arknoid2, arknoid2, tnzs_state, arknoid2, ROT270, "Taito Corporation Japan", "Arkanoid - Revenge of DOH (World)", 0 )
2639GAME( 1987, arknoid2u, arknoid2, arknoid2, arknid2u, tnzs_state, arknoid2, ROT270, "Taito America Corporation (Romstar license)", "Arkanoid - Revenge of DOH (US)", 0 )
2640GAME( 1987, arknoid2j, arknoid2, arknoid2, arknid2u, tnzs_state, arknoid2, ROT270, "Taito Corporation", "Arkanoid - Revenge of DOH (Japan)", 0 )
2641GAME( 1987, arknoid2b, arknoid2, arknoid2, arknid2u, tnzs_state, arknoid2, ROT270, "bootleg", "Arkanoid - Revenge of DOH (Japan bootleg)", 0 )
2642GAME( 1987, drtoppel,  0,        drtoppel, drtoppel, tnzs_state, drtoppel, ROT90,  "Kaneko / Taito Corporation Japan", "Dr. Toppel's Adventure (World)", 0 ) /* Possible region hack */
2643GAME( 1987, drtoppelu, drtoppel, drtoppel, drtopplu, tnzs_state, drtoppel, ROT90,  "Kaneko / Taito America Corporation", "Dr. Toppel's Adventure (US)", 0 ) /* Possible region hack */
2644GAME( 1987, drtoppelj, drtoppel, drtoppel, drtopplu, tnzs_state, drtoppel, ROT90,  "Kaneko / Taito Corporation", "Dr. Toppel's Tankentai (Japan)", 0 )
2645GAME( 1988, kageki,    0,        kageki,   kageki, tnzs_state,   kageki,   ROT90,  "Kaneko / Taito America Corporation (Romstar license)", "Kageki (US)", 0 )
2646GAME( 1988, kagekij,   kageki,   kageki,   kagekij, tnzs_state,  kageki,   ROT90,  "Kaneko / Taito Corporation", "Kageki (Japan)", 0 )
2647GAME( 1992, kagekih,   kageki,   kageki,   kageki, tnzs_state,   kageki,   ROT90,  "hack", "Kageki (hack)", 0 ) // date is hacked at least, might also be a Japan set hacked to show english
2648GAME( 1988, chukatai,  0,        tnzs,     chukatai, tnzs_state, chukatai, ROT0,   "Taito Corporation Japan", "Chuka Taisen (World)", 0 ) /* Possible region hack */
2649GAME( 1988, chukataiu, chukatai, tnzs,     chukatau, tnzs_state, chukatai, ROT0,   "Taito America Corporation", "Chuka Taisen (US)", 0 ) /* Possible region hack */
2650GAME( 1988, chukataij, chukatai, tnzs,     chukatau, tnzs_state, chukatai, ROT0,   "Taito Corporation", "Chuka Taisen (Japan)", 0 )
2651GAME( 1988, tnzs,      0,        tnzsb,    tnzs, tnzs_state,     tnzsb,    ROT0,   "Taito Corporation Japan", "The NewZealand Story (World, new version) (newer PCB)", 0 )
2652GAME( 1988, tnzsj,     tnzs,     tnzsb,    tnzsj, tnzs_state,    tnzsb,    ROT0,   "Taito Corporation", "The NewZealand Story (Japan, new version) (newer PCB)", 0 )
2653GAME( 1988, tnzsjo,    tnzs,     tnzs,     tnzsjo, tnzs_state,   tnzs,     ROT0,   "Taito Corporation", "The NewZealand Story (Japan, old version) (older PCB)", 0 )
2654GAME( 1988, tnzso,     tnzs,     tnzs,     tnzsop, tnzs_state,   tnzs,     ROT0,   "Taito Corporation Japan", "The NewZealand Story (World, old version) (older PCB)", 0 )
2655GAME( 1988, tnzsop,    tnzs,     tnzs,     tnzsop, tnzs_state,   tnzs,     ROT0,   "Taito Corporation Japan", "The NewZealand Story (World, prototype?) (older PCB)", 0 )
2656GAME( 1988, kabukiz,   0,        kabukiz,  kabukiz, tnzs_state,  kabukiz,  ROT0,   "Kaneko / Taito Corporation Japan", "Kabuki-Z (World)", 0 )
2657GAME( 1988, kabukizj,  kabukiz,  kabukiz,  kabukizj, tnzs_state, kabukiz,  ROT0,   "Kaneko / Taito Corporation", "Kabuki-Z (Japan)", 0 )
2658GAME( 1989, insectx,   0,        insectx,  insectx, tnzs_state,  insectx,  ROT0,   "Taito Corporation Japan", "Insector X (World)", 0 )
2659GAME( 1989, insectxj,  insectx,  insectx,  insectxj, tnzs_state, insectx,  ROT0,   "Taito Corporation", "Insector X (Japan)", 0 )
2660GAME( 1992, jpopnics,  0,        jpopnics, jpopnics, driver_device, 0,        ROT0,   "bootleg (Nics)", "Jumping Pop (Nics, Korean bootleg of Plump Pop)", GAME_IMPERFECT_GRAPHICS )
2663GAME( 1987, plumppop,  0,        drtoppel, plumppop, tnzs_state,    plumpop,  ROT0,   "Taito Corporation", "Plump Pop (Japan)", 0 )
2664GAME( 1992, jpopnics,  0,        jpopnics, jpopnics, driver_device, 0,        ROT0,   "Nics",              "Jumping Pop (Nics, Korean hack of Plump Pop)", GAME_IMPERFECT_GRAPHICS )
2665
2666GAME( 1987, extrmatn,  0,        arknoid2, extrmatn, tnzs_state,    extrmatn, ROT270, "Taito Corporation Japan",     "Extermination (World)", 0 )
2667GAME( 1987, extrmatnu, extrmatn, arknoid2, extrmatn, tnzs_state,    extrmatn, ROT270, "Taito (World Games license)", "Extermination (US)", 0 )
2668GAME( 1987, extrmatnj, extrmatn, arknoid2, extrmatn, tnzs_state,    extrmatn, ROT270, "Taito Corporation",           "Extermination (Japan)", 0 )
2669
2670GAME( 1987, arknoid2,  0,        arknoid2, arknoid2, tnzs_state,    arknoid2, ROT270, "Taito Corporation Japan",                     "Arkanoid - Revenge of DOH (World)", 0 )
2671GAME( 1987, arknoid2u, arknoid2, arknoid2, arknid2u, tnzs_state,    arknoid2, ROT270, "Taito America Corporation (Romstar license)", "Arkanoid - Revenge of DOH (US)", 0 )
2672GAME( 1987, arknoid2j, arknoid2, arknoid2, arknid2u, tnzs_state,    arknoid2, ROT270, "Taito Corporation",                           "Arkanoid - Revenge of DOH (Japan)", 0 )
2673GAME( 1987, arknoid2b, arknoid2, arknoid2, arknid2u, tnzs_state,    arknoid2, ROT270, "bootleg",                                     "Arkanoid - Revenge of DOH (Japan bootleg)", 0 )
2674
2675GAME( 1987, drtoppel,  0,        drtoppel, drtoppel, tnzs_state,    drtoppel, ROT90,  "Kaneko / Taito Corporation Japan",   "Dr. Toppel's Adventure (World)", 0 ) /* Possible region hack */
2676GAME( 1987, drtoppelu, drtoppel, drtoppel, drtopplu, tnzs_state,    drtoppel, ROT90,  "Kaneko / Taito America Corporation", "Dr. Toppel's Adventure (US)", 0 ) /* Possible region hack */
2677GAME( 1987, drtoppelj, drtoppel, drtoppel, drtopplu, tnzs_state,    drtoppel, ROT90,  "Kaneko / Taito Corporation",         "Dr. Toppel's Tankentai (Japan)", 0 )
2678
2679GAME( 1988, kageki,    0,        kageki,   kageki,   tnzs_state,    kageki,   ROT90,  "Kaneko / Taito America Corporation (Romstar license)", "Kageki (US)", 0 )
2680GAME( 1988, kagekij,   kageki,   kageki,   kagekij,  tnzs_state,    kageki,   ROT90,  "Kaneko / Taito Corporation",                           "Kageki (Japan)", 0 )
2681GAME( 1992, kagekih,   kageki,   kageki,   kageki,   tnzs_state,    kageki,   ROT90,  "hack",                                                 "Kageki (hack)", 0 ) // date is hacked at least, might also be a Japan set hacked to show english
2682
2683GAME( 1988, chukatai,  0,        tnzs,     chukatai, tnzs_state,    chukatai, ROT0,   "Taito Corporation Japan",   "Chuka Taisen (World)", 0 ) /* Possible region hack */
2684GAME( 1988, chukataiu, chukatai, tnzs,     chukatau, tnzs_state,    chukatai, ROT0,   "Taito America Corporation", "Chuka Taisen (US)", 0 ) /* Possible region hack */
2685GAME( 1988, chukataij, chukatai, tnzs,     chukatau, tnzs_state,    chukatai, ROT0,   "Taito Corporation",         "Chuka Taisen (Japan)", 0 )
2686
2687GAME( 1988, tnzs,      0,        tnzsb,    tnzs,     tnzs_state,    tnzsb,    ROT0,   "Taito Corporation Japan", "The NewZealand Story (World, new version) (newer PCB)", 0 )
2688GAME( 1988, tnzsj,     tnzs,     tnzsb,    tnzsj,    tnzs_state,    tnzsb,    ROT0,   "Taito Corporation",       "The NewZealand Story (Japan, new version) (newer PCB)", 0 )
2689GAME( 1988, tnzsjo,    tnzs,     tnzs,     tnzsjo,   tnzs_state,    tnzs,     ROT0,   "Taito Corporation",       "The NewZealand Story (Japan, old version) (older PCB)", 0 )
2690GAME( 1988, tnzso,     tnzs,     tnzs,     tnzsop,   tnzs_state,    tnzs,     ROT0,   "Taito Corporation Japan", "The NewZealand Story (World, old version) (older PCB)", 0 )
2691GAME( 1988, tnzsop,    tnzs,     tnzs,     tnzsop,   tnzs_state,    tnzs,     ROT0,   "Taito Corporation Japan", "The NewZealand Story (World, prototype?) (older PCB)", 0 )
2692
2693GAME( 1988, kabukiz,   0,        kabukiz,  kabukiz,  tnzs_state,    kabukiz,  ROT0,   "Kaneko / Taito Corporation Japan", "Kabuki-Z (World)", 0 )
2694GAME( 1988, kabukizj,  kabukiz,  kabukiz,  kabukizj, tnzs_state,    kabukiz,  ROT0,   "Kaneko / Taito Corporation",       "Kabuki-Z (Japan)", 0 )
2695
2696GAME( 1989, insectx,   0,        insectx,  insectx,  tnzs_state,    insectx,  ROT0,   "Taito Corporation Japan", "Insector X (World)", 0 )
2697GAME( 1989, insectxj,  insectx,  insectx,  insectxj, tnzs_state,    insectx,  ROT0,   "Taito Corporation",       "Insector X (Japan)", 0 )
2698
trunk/src/mame/machine/tnzs.c
r32832r32833
1616#include "cpu/mcs48/mcs48.h"
1717#include "includes/tnzs.h"
1818
19READ8_MEMBER(tnzs_state::tnzs_ramrom_bank_r)
20{
21   // the first 2 banks would correspond to the fixed section of ROM, since this is
22   // a waste of time the hardware maps 2 banks of RAM there instead.
23   if (m_bank1<2)
24   {
25      return m_bankedram[m_bank1 * 0x4000 + offset];
26   }
27   else
28   {
29      return m_ROM[m_bank1 * 0x4000 + offset];
30   }
31}
3219
33WRITE8_MEMBER(tnzs_state::tnzs_ramrom_bank_w)
34{
35   if (m_bank1<2)
36   {
37      m_bankedram[m_bank1 * 0x4000 + offset] = data;
38   }
39   else
40   {
41      // illegal write to ROM
42   }
43}
4420
45
4621READ8_MEMBER(tnzs_state::mcu_tnzs_r)
4722{
4823   UINT8 data;
r32832r32833
668643}
669644
670645
671MACHINE_START_MEMBER(tnzs_state,jpopnics)
646MACHINE_START_MEMBER(tnzs_state,tnzs_common)
672647{
673648   UINT8 *SUB = memregion("sub")->base();
674649   m_ROM = memregion("maincpu")->base();
675   m_bankedram = auto_alloc_array(machine(), UINT8, 0x8000); // 2 banks of 0x4000
676650
677651   membank("subbank")->configure_entries(0, 4, &SUB[0x08000], 0x2000);
678652   membank("subbank")->set_entry(m_bank2);
679653
680   m_bank1 = 2;
681654   m_bank2 = 0;
655   m_mainbank->set_bank(2);
682656
683   save_pointer(NAME(m_bankedram), 0x8000);
684657   save_item(NAME(m_screenflip));
685   save_item(NAME(m_bank1));
686658   save_item(NAME(m_bank2));
687659
688660   machine().save().register_postload(save_prepost_delegate(FUNC(tnzs_state::tnzs_postload), this));
r32832r32833
690662
691663MACHINE_START_MEMBER(tnzs_state,tnzs)
692664{
693   MACHINE_START_CALL_MEMBER( jpopnics );
665   MACHINE_START_CALL_MEMBER( tnzs_common );
694666
695667   save_item(NAME(m_kageki_csport_sel));
696668   save_item(NAME(m_input_select));
r32832r32833
719691      m_subcpu->set_input_line(INPUT_LINE_RESET, ASSERT_LINE);
720692
721693   /* bits 0-2 select RAM/ROM bank */
722   m_bank1 = data & 0x07;
694   m_mainbank->set_bank(data & 0x07);
723695}
724696
725697WRITE8_MEMBER(tnzs_state::tnzs_bankswitch1_w)
trunk/src/mame/includes/tnzs.h
r32832r32833
22#include "sound/samples.h"
33#include "video/seta001.h"
44#include "cpu/mcs48/mcs48.h"
5#include "machine/bankdev.h"
56
67#define MAX_SAMPLES 0x2f        /* max samples */
78
r32832r32833
3132      m_seta001(*this, "spritegen"),
3233      m_dac(*this, "dac"),
3334      m_samples(*this, "samples"),
34      m_palette(*this, "palette") { }
35      m_palette(*this, "palette"),
36      m_mainbank(*this, "mainbank")   
37      { }
3538
3639   /* video-related */
3740   int      m_screenflip;
r32832r32833
5457   UINT8    m_mcu_coins_a;
5558   UINT8    m_mcu_coins_b;
5659   UINT8    m_mcu_credits;
57   int      m_bank1;
5860   int      m_bank2;
5961
60   UINT8*   m_bankedram;
6162   UINT8*   m_ROM;
6263
6364   /* devices */
r32832r32833
8687   DECLARE_WRITE8_MEMBER(kabukiz_sound_bank_w);
8788   DECLARE_WRITE8_MEMBER(kabukiz_sample_w);
8889
89   DECLARE_READ8_MEMBER(tnzs_ramrom_bank_r);
90   DECLARE_WRITE8_MEMBER(tnzs_ramrom_bank_w);
91
9290   SAMPLES_START_CB_MEMBER(kageki_init_samples);
9391
9492   DECLARE_DRIVER_INIT(arknoid2);
r32832r32833
104102   DECLARE_MACHINE_START(tnzs);
105103   DECLARE_MACHINE_RESET(tnzs);
106104   DECLARE_PALETTE_INIT(arknoid2);
107   DECLARE_MACHINE_START(jpopnics);
105   DECLARE_MACHINE_START(tnzs_common);
108106   DECLARE_MACHINE_RESET(jpopnics);
109107   UINT32 screen_update_tnzs(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
110108   void screen_eof_tnzs(screen_device &screen, bool state);
r32832r32833
119117   optional_device<dac_device> m_dac;
120118   optional_device<samples_device> m_samples;
121119   required_device<palette_device> m_palette;
120   required_device<address_map_bank_device> m_mainbank;
122121};

Previous 199869 Revisions Next


© 1997-2024 The MAME Team