separate .lay file for VCC

This commit is contained in:
hap 2016-01-15 13:26:46 +01:00
parent ba36bb58fa
commit 38e15d7885
2 changed files with 50 additions and 1 deletions

View File

@ -594,6 +594,7 @@ expect that the software reads these once on startup only.
// internal artwork
#include "fidel_cc.lh"
#include "fidel_vcc.lh"
#include "fidel_vsc.lh"
#include "fidel_vbrc.lh"
@ -1475,7 +1476,7 @@ static MACHINE_CONFIG_START( vcc, fidelz80_state )
MCFG_I8255_OUT_PORTC_CB(WRITE8(fidelz80_state, vcc_ppi_portc_w))
MCFG_TIMER_DRIVER_ADD_PERIODIC("display_decay", fidelz80_state, display_decay_tick, attotime::from_msec(1))
MCFG_DEFAULT_LAYOUT(layout_fidel_cc)
MCFG_DEFAULT_LAYOUT(layout_fidel_vcc)
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")

View File

@ -0,0 +1,48 @@
<?xml version="1.0"?>
<mamelayout version="2">
<element name="digit" defstate="0">
<led7seg>
<color red="0.75" green="0.0" blue="0.0" />
</led7seg>
</element>
<element name="led" defstate="0">
<disk state="1">
<color red="0.75" green="0.0" blue="0.0" />
</disk>
<disk state="0">
<color red="0.09375" green="0.0" blue="0.0" />
</disk>
</element>
<element name="background">
<rect>
<bounds left="0" top="0" right="1" bottom="1" />
<color red="0.0" green="0.0" blue="0.0" />
</rect>
</element>
<view name="Default Layout">
<!-- Black background -->
<bezel element="background">
<bounds left="00" top="00" right="250" bottom="80" />
</bezel>
<bezel name="digit0" element="digit">
<bounds x="10" y="0" width="50" height="80" />
</bezel>
<bezel name="digit1" element="digit">
<bounds x="70" y="0" width="50" height="80" />
</bezel>
<bezel name="digit2" element="digit">
<bounds x="140" y="0" width="50" height="80" />
</bezel>
<bezel name="digit3" element="digit">
<bounds x="200" y="0" width="50" height="80" />
</bezel>
<bezel name="1.7" element="led">
<bounds x="130" y="10" width="10" height="10" />
</bezel>
<bezel name="0.7" element="led">
<bounds x="130" y="60" width="10" height="10" />
</bezel>
</view>
</mamelayout>