trunk/src/mame/drivers/tnzs.c
r32832 | r32833 | |
744 | 744 | |
745 | 745 | static ADDRESS_MAP_START( main_map, AS_PROGRAM, 8, tnzs_state ) |
746 | 746 | 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) |
748 | 748 | AM_RANGE(0xc000, 0xcfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodelow_r8, spritecodelow_w8) |
749 | 749 | AM_RANGE(0xd000, 0xdfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodehigh_r8, spritecodehigh_w8) |
750 | 750 | AM_RANGE(0xe000, 0xefff) AM_RAM AM_SHARE("share1") |
r32832 | r32833 | |
760 | 760 | |
761 | 761 | static ADDRESS_MAP_START( cpu0_type2, AS_PROGRAM, 8, tnzs_state ) |
762 | 762 | 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) |
764 | 764 | AM_RANGE(0xc000, 0xcfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodelow_r8, spritecodelow_w8) |
765 | 765 | AM_RANGE(0xd000, 0xdfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodehigh_r8, spritecodehigh_w8) |
766 | 766 | AM_RANGE(0xe000, 0xefff) AM_RAM AM_SHARE("share1") |
r32832 | r32833 | |
772 | 772 | AM_RANGE(0xf800, 0xfbff) AM_WRITENOP |
773 | 773 | ADDRESS_MAP_END |
774 | 774 | |
| 775 | |
775 | 776 | static ADDRESS_MAP_START( sub_map, AS_PROGRAM, 8, tnzs_state ) |
776 | 777 | AM_RANGE(0x0000, 0x7fff) AM_ROM |
777 | 778 | AM_RANGE(0x8000, 0x9fff) AM_ROMBANK("subbank") |
r32832 | r32833 | |
863 | 864 | |
864 | 865 | static ADDRESS_MAP_START( jpopnics_main_map, AS_PROGRAM, 8, tnzs_state ) |
865 | 866 | 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) |
867 | 868 | AM_RANGE(0xc000, 0xcfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodelow_r8, spritecodelow_w8) |
868 | 869 | AM_RANGE(0xd000, 0xdfff) AM_RAM AM_DEVREADWRITE("spritegen", seta001_device, spritecodehigh_r8, spritecodehigh_w8) |
869 | 870 | AM_RANGE(0xe000, 0xefff) AM_RAM AM_SHARE("share1") /* WORK RAM (shared by the 2 z80's) */ |
r32832 | r32833 | |
897 | 898 | AM_RANGE(0xf000, 0xf003) AM_READ(arknoid2_sh_f000_r) |
898 | 899 | ADDRESS_MAP_END |
899 | 900 | |
| 901 | /* RAM/ROM bank that maps at 0x8000-0xbfff on maincpu */ |
| 902 | static 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) |
| 905 | ADDRESS_MAP_END |
900 | 906 | |
| 907 | MACHINE_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) |
| 914 | MACHINE_CONFIG_END |
| 915 | |
901 | 916 | #define COMMON_IN2\ |
902 | 917 | PORT_START("IN2")\ |
903 | 918 | PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_SERVICE1 )\ |
r32832 | r32833 | |
1542 | 1557 | MCFG_CPU_PROGRAM_MAP(sub_map) |
1543 | 1558 | MCFG_CPU_VBLANK_INT_DRIVER("screen", tnzs_state, irq0_line_hold) |
1544 | 1559 | |
| 1560 | MCFG_FRAGMENT_ADD(tnzs_mainbank) |
| 1561 | |
1545 | 1562 | MCFG_QUANTUM_PERFECT_CPU("maincpu") |
1546 | 1563 | |
1547 | 1564 | MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs) |
r32832 | r32833 | |
1588 | 1605 | MCFG_CPU_PROGRAM_MAP(sub_map) |
1589 | 1606 | MCFG_CPU_VBLANK_INT_DRIVER("screen", tnzs_state, irq0_line_hold) |
1590 | 1607 | |
| 1608 | MCFG_FRAGMENT_ADD(tnzs_mainbank) |
| 1609 | |
1591 | 1610 | MCFG_QUANTUM_PERFECT_CPU("maincpu") |
1592 | 1611 | |
1593 | 1612 | MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs) |
r32832 | r32833 | |
1636 | 1655 | MCFG_CPU_ADD("mcu", I8742, 12000000/2) /* 400KHz ??? - Main board Crystal is 12MHz */ |
1637 | 1656 | MCFG_CPU_IO_MAP(i8742_io_map) |
1638 | 1657 | |
| 1658 | MCFG_FRAGMENT_ADD(tnzs_mainbank) |
| 1659 | |
1639 | 1660 | MCFG_QUANTUM_PERFECT_CPU("maincpu") |
1640 | 1661 | |
1641 | 1662 | MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs) |
r32832 | r32833 | |
1680 | 1701 | MCFG_CPU_PROGRAM_MAP(sub_map) |
1681 | 1702 | MCFG_CPU_VBLANK_INT_DRIVER("screen", tnzs_state, irq0_line_hold) |
1682 | 1703 | |
| 1704 | MCFG_FRAGMENT_ADD(tnzs_mainbank) |
| 1705 | |
1683 | 1706 | MCFG_QUANTUM_PERFECT_CPU("maincpu") |
1684 | 1707 | |
1685 | 1708 | MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs) |
r32832 | r32833 | |
1724 | 1747 | MCFG_CPU_PROGRAM_MAP(kageki_sub_map) |
1725 | 1748 | MCFG_CPU_VBLANK_INT_DRIVER("screen", tnzs_state, irq0_line_hold) |
1726 | 1749 | |
| 1750 | MCFG_FRAGMENT_ADD(tnzs_mainbank) |
| 1751 | |
1727 | 1752 | MCFG_QUANTUM_PERFECT_CPU("maincpu") |
1728 | 1753 | |
1729 | 1754 | MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs) |
r32832 | r32833 | |
1780 | 1805 | MCFG_CPU_PROGRAM_MAP(tnzsb_cpu2_map) |
1781 | 1806 | MCFG_CPU_IO_MAP(tnzsb_io_map) |
1782 | 1807 | |
| 1808 | MCFG_FRAGMENT_ADD(tnzs_mainbank) |
| 1809 | |
1783 | 1810 | MCFG_QUANTUM_PERFECT_CPU("maincpu") |
1784 | 1811 | |
1785 | 1812 | MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs) |
r32832 | r32833 | |
1844 | 1871 | MCFG_CPU_PROGRAM_MAP(jpopnics_sub_map) |
1845 | 1872 | MCFG_CPU_VBLANK_INT_DRIVER("screen", tnzs_state, irq0_line_hold) |
1846 | 1873 | |
| 1874 | MCFG_FRAGMENT_ADD(tnzs_mainbank) |
| 1875 | |
1847 | 1876 | MCFG_QUANTUM_PERFECT_CPU("maincpu") |
1848 | 1877 | |
1849 | | MCFG_MACHINE_START_OVERRIDE(tnzs_state,jpopnics) |
| 1878 | MCFG_MACHINE_START_OVERRIDE(tnzs_state,tnzs_common) |
1850 | 1879 | MCFG_MACHINE_RESET_OVERRIDE(tnzs_state,jpopnics) |
1851 | 1880 | |
1852 | 1881 | MCFG_DEVICE_ADD("spritegen", SETA001_SPRITE, 0) |
r32832 | r32833 | |
2631 | 2660 | |
2632 | 2661 | |
2633 | 2662 | // YEAR, NAME, PARENT, MACHINE, INPUT, INIT, MONITOR,COMPANY,FULLNAME,FLAGS |
2634 | | GAME( 1987, plumppop, 0, drtoppel, plumppop, tnzs_state, plumpop, ROT0, "Taito Corporation", "Plump Pop (Japan)", 0 ) |
2635 | | GAME( 1987, extrmatn, 0, arknoid2, extrmatn, tnzs_state, extrmatn, ROT270, "Taito Corporation Japan", "Extermination (World)", 0 ) |
2636 | | GAME( 1987, extrmatnu, extrmatn, arknoid2, extrmatn, tnzs_state, extrmatn, ROT270, "Taito (World Games license)", "Extermination (US)", 0 ) |
2637 | | GAME( 1987, extrmatnj, extrmatn, arknoid2, extrmatn, tnzs_state, extrmatn, ROT270, "Taito Corporation", "Extermination (Japan)", 0 ) |
2638 | | GAME( 1987, arknoid2, 0, arknoid2, arknoid2, tnzs_state, arknoid2, ROT270, "Taito Corporation Japan", "Arkanoid - Revenge of DOH (World)", 0 ) |
2639 | | GAME( 1987, arknoid2u, arknoid2, arknoid2, arknid2u, tnzs_state, arknoid2, ROT270, "Taito America Corporation (Romstar license)", "Arkanoid - Revenge of DOH (US)", 0 ) |
2640 | | GAME( 1987, arknoid2j, arknoid2, arknoid2, arknid2u, tnzs_state, arknoid2, ROT270, "Taito Corporation", "Arkanoid - Revenge of DOH (Japan)", 0 ) |
2641 | | GAME( 1987, arknoid2b, arknoid2, arknoid2, arknid2u, tnzs_state, arknoid2, ROT270, "bootleg", "Arkanoid - Revenge of DOH (Japan bootleg)", 0 ) |
2642 | | GAME( 1987, drtoppel, 0, drtoppel, drtoppel, tnzs_state, drtoppel, ROT90, "Kaneko / Taito Corporation Japan", "Dr. Toppel's Adventure (World)", 0 ) /* Possible region hack */ |
2643 | | GAME( 1987, drtoppelu, drtoppel, drtoppel, drtopplu, tnzs_state, drtoppel, ROT90, "Kaneko / Taito America Corporation", "Dr. Toppel's Adventure (US)", 0 ) /* Possible region hack */ |
2644 | | GAME( 1987, drtoppelj, drtoppel, drtoppel, drtopplu, tnzs_state, drtoppel, ROT90, "Kaneko / Taito Corporation", "Dr. Toppel's Tankentai (Japan)", 0 ) |
2645 | | GAME( 1988, kageki, 0, kageki, kageki, tnzs_state, kageki, ROT90, "Kaneko / Taito America Corporation (Romstar license)", "Kageki (US)", 0 ) |
2646 | | GAME( 1988, kagekij, kageki, kageki, kagekij, tnzs_state, kageki, ROT90, "Kaneko / Taito Corporation", "Kageki (Japan)", 0 ) |
2647 | | GAME( 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 |
2648 | | GAME( 1988, chukatai, 0, tnzs, chukatai, tnzs_state, chukatai, ROT0, "Taito Corporation Japan", "Chuka Taisen (World)", 0 ) /* Possible region hack */ |
2649 | | GAME( 1988, chukataiu, chukatai, tnzs, chukatau, tnzs_state, chukatai, ROT0, "Taito America Corporation", "Chuka Taisen (US)", 0 ) /* Possible region hack */ |
2650 | | GAME( 1988, chukataij, chukatai, tnzs, chukatau, tnzs_state, chukatai, ROT0, "Taito Corporation", "Chuka Taisen (Japan)", 0 ) |
2651 | | GAME( 1988, tnzs, 0, tnzsb, tnzs, tnzs_state, tnzsb, ROT0, "Taito Corporation Japan", "The NewZealand Story (World, new version) (newer PCB)", 0 ) |
2652 | | GAME( 1988, tnzsj, tnzs, tnzsb, tnzsj, tnzs_state, tnzsb, ROT0, "Taito Corporation", "The NewZealand Story (Japan, new version) (newer PCB)", 0 ) |
2653 | | GAME( 1988, tnzsjo, tnzs, tnzs, tnzsjo, tnzs_state, tnzs, ROT0, "Taito Corporation", "The NewZealand Story (Japan, old version) (older PCB)", 0 ) |
2654 | | GAME( 1988, tnzso, tnzs, tnzs, tnzsop, tnzs_state, tnzs, ROT0, "Taito Corporation Japan", "The NewZealand Story (World, old version) (older PCB)", 0 ) |
2655 | | GAME( 1988, tnzsop, tnzs, tnzs, tnzsop, tnzs_state, tnzs, ROT0, "Taito Corporation Japan", "The NewZealand Story (World, prototype?) (older PCB)", 0 ) |
2656 | | GAME( 1988, kabukiz, 0, kabukiz, kabukiz, tnzs_state, kabukiz, ROT0, "Kaneko / Taito Corporation Japan", "Kabuki-Z (World)", 0 ) |
2657 | | GAME( 1988, kabukizj, kabukiz, kabukiz, kabukizj, tnzs_state, kabukiz, ROT0, "Kaneko / Taito Corporation", "Kabuki-Z (Japan)", 0 ) |
2658 | | GAME( 1989, insectx, 0, insectx, insectx, tnzs_state, insectx, ROT0, "Taito Corporation Japan", "Insector X (World)", 0 ) |
2659 | | GAME( 1989, insectxj, insectx, insectx, insectxj, tnzs_state, insectx, ROT0, "Taito Corporation", "Insector X (Japan)", 0 ) |
2660 | | GAME( 1992, jpopnics, 0, jpopnics, jpopnics, driver_device, 0, ROT0, "bootleg (Nics)", "Jumping Pop (Nics, Korean bootleg of Plump Pop)", GAME_IMPERFECT_GRAPHICS ) |
| 2663 | GAME( 1987, plumppop, 0, drtoppel, plumppop, tnzs_state, plumpop, ROT0, "Taito Corporation", "Plump Pop (Japan)", 0 ) |
| 2664 | GAME( 1992, jpopnics, 0, jpopnics, jpopnics, driver_device, 0, ROT0, "Nics", "Jumping Pop (Nics, Korean hack of Plump Pop)", GAME_IMPERFECT_GRAPHICS ) |
| 2665 | |
| 2666 | GAME( 1987, extrmatn, 0, arknoid2, extrmatn, tnzs_state, extrmatn, ROT270, "Taito Corporation Japan", "Extermination (World)", 0 ) |
| 2667 | GAME( 1987, extrmatnu, extrmatn, arknoid2, extrmatn, tnzs_state, extrmatn, ROT270, "Taito (World Games license)", "Extermination (US)", 0 ) |
| 2668 | GAME( 1987, extrmatnj, extrmatn, arknoid2, extrmatn, tnzs_state, extrmatn, ROT270, "Taito Corporation", "Extermination (Japan)", 0 ) |
| 2669 | |
| 2670 | GAME( 1987, arknoid2, 0, arknoid2, arknoid2, tnzs_state, arknoid2, ROT270, "Taito Corporation Japan", "Arkanoid - Revenge of DOH (World)", 0 ) |
| 2671 | GAME( 1987, arknoid2u, arknoid2, arknoid2, arknid2u, tnzs_state, arknoid2, ROT270, "Taito America Corporation (Romstar license)", "Arkanoid - Revenge of DOH (US)", 0 ) |
| 2672 | GAME( 1987, arknoid2j, arknoid2, arknoid2, arknid2u, tnzs_state, arknoid2, ROT270, "Taito Corporation", "Arkanoid - Revenge of DOH (Japan)", 0 ) |
| 2673 | GAME( 1987, arknoid2b, arknoid2, arknoid2, arknid2u, tnzs_state, arknoid2, ROT270, "bootleg", "Arkanoid - Revenge of DOH (Japan bootleg)", 0 ) |
| 2674 | |
| 2675 | GAME( 1987, drtoppel, 0, drtoppel, drtoppel, tnzs_state, drtoppel, ROT90, "Kaneko / Taito Corporation Japan", "Dr. Toppel's Adventure (World)", 0 ) /* Possible region hack */ |
| 2676 | GAME( 1987, drtoppelu, drtoppel, drtoppel, drtopplu, tnzs_state, drtoppel, ROT90, "Kaneko / Taito America Corporation", "Dr. Toppel's Adventure (US)", 0 ) /* Possible region hack */ |
| 2677 | GAME( 1987, drtoppelj, drtoppel, drtoppel, drtopplu, tnzs_state, drtoppel, ROT90, "Kaneko / Taito Corporation", "Dr. Toppel's Tankentai (Japan)", 0 ) |
| 2678 | |
| 2679 | GAME( 1988, kageki, 0, kageki, kageki, tnzs_state, kageki, ROT90, "Kaneko / Taito America Corporation (Romstar license)", "Kageki (US)", 0 ) |
| 2680 | GAME( 1988, kagekij, kageki, kageki, kagekij, tnzs_state, kageki, ROT90, "Kaneko / Taito Corporation", "Kageki (Japan)", 0 ) |
| 2681 | GAME( 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 | |
| 2683 | GAME( 1988, chukatai, 0, tnzs, chukatai, tnzs_state, chukatai, ROT0, "Taito Corporation Japan", "Chuka Taisen (World)", 0 ) /* Possible region hack */ |
| 2684 | GAME( 1988, chukataiu, chukatai, tnzs, chukatau, tnzs_state, chukatai, ROT0, "Taito America Corporation", "Chuka Taisen (US)", 0 ) /* Possible region hack */ |
| 2685 | GAME( 1988, chukataij, chukatai, tnzs, chukatau, tnzs_state, chukatai, ROT0, "Taito Corporation", "Chuka Taisen (Japan)", 0 ) |
| 2686 | |
| 2687 | GAME( 1988, tnzs, 0, tnzsb, tnzs, tnzs_state, tnzsb, ROT0, "Taito Corporation Japan", "The NewZealand Story (World, new version) (newer PCB)", 0 ) |
| 2688 | GAME( 1988, tnzsj, tnzs, tnzsb, tnzsj, tnzs_state, tnzsb, ROT0, "Taito Corporation", "The NewZealand Story (Japan, new version) (newer PCB)", 0 ) |
| 2689 | GAME( 1988, tnzsjo, tnzs, tnzs, tnzsjo, tnzs_state, tnzs, ROT0, "Taito Corporation", "The NewZealand Story (Japan, old version) (older PCB)", 0 ) |
| 2690 | GAME( 1988, tnzso, tnzs, tnzs, tnzsop, tnzs_state, tnzs, ROT0, "Taito Corporation Japan", "The NewZealand Story (World, old version) (older PCB)", 0 ) |
| 2691 | GAME( 1988, tnzsop, tnzs, tnzs, tnzsop, tnzs_state, tnzs, ROT0, "Taito Corporation Japan", "The NewZealand Story (World, prototype?) (older PCB)", 0 ) |
| 2692 | |
| 2693 | GAME( 1988, kabukiz, 0, kabukiz, kabukiz, tnzs_state, kabukiz, ROT0, "Kaneko / Taito Corporation Japan", "Kabuki-Z (World)", 0 ) |
| 2694 | GAME( 1988, kabukizj, kabukiz, kabukiz, kabukizj, tnzs_state, kabukiz, ROT0, "Kaneko / Taito Corporation", "Kabuki-Z (Japan)", 0 ) |
| 2695 | |
| 2696 | GAME( 1989, insectx, 0, insectx, insectx, tnzs_state, insectx, ROT0, "Taito Corporation Japan", "Insector X (World)", 0 ) |
| 2697 | GAME( 1989, insectxj, insectx, insectx, insectxj, tnzs_state, insectx, ROT0, "Taito Corporation", "Insector X (Japan)", 0 ) |
| 2698 | |