Previous 199869 Revisions Next

r18524 Sunday 14th October, 2012 at 20:42:16 UTC by hap
added barricad color overlay (info from external artwork by Mr Do)
[src/mame]mame.mak
[src/mame/drivers]hitme.c
[src/mame/layout]barricad.lay*

trunk/src/mame/layout/barricad.lay
r0r18524
1<?xml version="1.0"?>
2<mamelayout version="2">
3   <element name="overlay_red">
4      <rect>
5         <bounds left="0" top="0" right="4" bottom="3" />
6         <color red="1.0" green="0.25" blue="0.125" />
7      </rect>
8   </element>
9   <element name="overlay_green">
10      <rect>
11         <bounds left="0" top="0" right="4" bottom="3" />
12         <color red="0.25" green="1.0" blue="0.125" />
13      </rect>
14   </element>
15
16   <view name="Red Overlay">
17      <screen index="0">
18         <bounds left="0" top="0" right="4" bottom="3" />
19      </screen>
20      <overlay name="overlay" element="overlay_red">
21         <bounds left="0" top="0" right="4" bottom="3" />
22      </overlay>
23   </view>
24   <view name="Green Overlay">
25      <screen index="0">
26         <bounds left="0" top="0" right="4" bottom="3" />
27      </screen>
28      <overlay name="overlay" element="overlay_green">
29         <bounds left="0" top="0" right="4" bottom="3" />
30      </overlay>
31   </view>
32</mamelayout>
trunk/src/mame/drivers/hitme.c
r18523r18524
1919#include "includes/hitme.h"
2020#include "sound/discrete.h"
2121
22#include "barricad.lh"
23
2224#define MASTER_CLOCK (XTAL_8_945MHz) /* confirmed on schematic */
2325
2426
r18523r18524
691693
692694GAME( 1976, hitme,    0,        hitme,    hitme, driver_device,    0, ROT0, "RamTek", "Hit Me (set 1)",  GAME_SUPPORTS_SAVE )   // 05/1976
693695GAME( 1976, hitme1,   hitme,    hitme,    hitme, driver_device,    0, ROT0, "RamTek", "Hit Me (set 2)",  GAME_SUPPORTS_SAVE )
694GAME( 1976, m21,      hitme,    hitme,    hitme, driver_device,    0, ROT0, "Mirco Games",  "21 (Mirco)", GAME_SUPPORTS_SAVE )   // 08/1976, licensed?
695GAME( 1978, super21,  0,        hitme,    super21, driver_device,  0, ROT0, "Mirco Games",  "Super Twenty One", GAME_SUPPORTS_SAVE )
696GAME( 1976, barricad, 0,        barricad, barricad, driver_device, 0, ROT0, "RamTek", "Barricade",  GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE )
697GAME( 1976, brickyrd, barricad, barricad, barricad, driver_device, 0, ROT0, "RamTek", "Brickyard",  GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE )
696GAME( 1976, m21,      hitme,    hitme,    hitme, driver_device,    0, ROT0, "Mirco Games", "21 (Mirco)", GAME_SUPPORTS_SAVE )   // 08/1976, licensed?
697GAME( 1978, super21,  0,        hitme,    super21, driver_device,  0, ROT0, "Mirco Games", "Super Twenty One", GAME_SUPPORTS_SAVE )
698GAMEL(1976, barricad, 0,        barricad, barricad, driver_device, 0, ROT0, "RamTek", "Barricade",  GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE, layout_barricad )
699GAMEL(1976, brickyrd, barricad, barricad, barricad, driver_device, 0, ROT0, "RamTek", "Brickyard",  GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE, layout_barricad )
trunk/src/mame/mame.mak
r18523r18524
20922092
20932093$(DRIVERS)/highvdeo.o:   $(LAYOUT)/fashion.lh
20942094
2095$(DRIVERS)/hitme.o:      $(LAYOUT)/barricad.lh
2096
20952097$(DRIVERS)/icecold.o:   $(LAYOUT)/icecold.lh
20962098
20972099$(DRIVERS)/igspoker.o:   $(LAYOUT)/igspoker.lh

Previous 199869 Revisions Next


© 1997-2024 The MAME Team