summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/layout/hh_pps41_test.lay
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/layout/hh_pps41_test.lay')
-rw-r--r--src/mame/layout/hh_pps41_test.lay37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/mame/layout/hh_pps41_test.lay b/src/mame/layout/hh_pps41_test.lay
new file mode 100644
index 00000000000..d737d012688
--- /dev/null
+++ b/src/mame/layout/hh_pps41_test.lay
@@ -0,0 +1,37 @@
+<?xml version="1.0"?>
+<!--
+license:CC0
+-->
+<mamelayout version="2">
+
+ <!-- define elements -->
+
+ <element name="static_black"><rect><color red="0.0" green="0.0" blue="0.0" /></rect></element>
+
+ <element name="led" defstate="0">
+ <disk state="0"><color red="0.0" green="0.0" blue="0.0" /></disk>
+ <disk state="1"><color red="0.5" green="1.0" blue="1.0" /></disk>
+ </element>
+
+
+ <!-- build screen -->
+
+ <view name="Test Layout">
+ <bounds left="0" right="32" top="0" bottom="16" />
+ <element ref="static_black">
+ <bounds left="0" right="32" top="0" bottom="16" />
+ </element>
+
+ <!-- max 16*32 matrix -->
+
+ <repeat count="16">
+ <param name="y" start="0" increment="1" />
+
+ <repeat count="32">
+ <param name="x" start="0" increment="1" />
+ <element name="~y~.~x~" ref="led"><bounds x="~x~" y="~y~" width="0.5" height="0.5" /></element>
+ </repeat>
+ </repeat>
+
+ </view>
+</mamelayout>