For side-by-side machine layouts, use dedicated left and right machine.xml files (my hard-coded solution for now)
This commit is contained in:
parent
398a653ed0
commit
f0a05ff401
16 changed files with 142 additions and 14 deletions
36
devices/pc8080/machine/vt100/debugger/machine-right.xml
Normal file
36
devices/pc8080/machine/vt100/debugger/machine-right.xml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="/versions/pc8080/1.30.6/machine.xsl"?>
|
||||
<machine id="vt100" class="pc8080 machine-right" border="1" pos="center" background="#FAEBD7">
|
||||
<name pos="center">VT100 Terminal</name>
|
||||
<computer id="computer" busWidth="16"/>
|
||||
<cpu id="cpu8080" model="8080" cycles="2764800" autoStart="true"/>
|
||||
<rom id="rom" addr="0x0000" size="0x2000" file="/devices/pc8080/rom/vt100/VT100.json"/>
|
||||
<ram id="ram" addr="0x2000" size="0x0C00"/>
|
||||
<video id="video" screenWidth="1600" screenHeight="960" smoothing="false" interruptRate="60"
|
||||
fontROM="/devices/pc8080/rom/vt100/23-018E2.json" fontColor="white" cellWidth="10" cellHeight="10"
|
||||
bufferAddr="0x2000" bufferRAM="true" bufferFormat="vt100" bufferCols="80" bufferRows="24" pos="left" padding="8px">
|
||||
<menu>
|
||||
<title>VT100 Screen</title>
|
||||
<control type="container" pos="right">
|
||||
<control type="rled" label="ON LINE" binding="online" padLeft="8px"/>
|
||||
<control type="rled" label="LOCAL" binding="local" padLeft="8px"/>
|
||||
<control type="rled" label="LOCKED" binding="locked" padLeft="8px"/>
|
||||
<control type="rled" label="L1" binding="l1" padLeft="8px"/>
|
||||
<control type="rled" label="L2" binding="l2" padLeft="8px"/>
|
||||
<control type="rled" label="L3" binding="l3" padLeft="8px"/>
|
||||
<control type="rled" label="L4" binding="l4" padLeft="8px"/>
|
||||
<control type="led" label="CAPS" binding="caps-lock" padLeft="8px"/>
|
||||
<control type="button" binding="fullScreen" padLeft="8px;line-height:1em">Full Screen</control>
|
||||
</control>
|
||||
</menu>
|
||||
</video>
|
||||
<chipset id="chipset" model="VT100"/>
|
||||
<keyboard id="keyboard" model="VT100">
|
||||
<control type="button" binding="setup" padLeft="8px">SET-UP</control>
|
||||
</keyboard>
|
||||
<serial id="serialPort" adapter="0" binding="print">
|
||||
<control type="button" binding="test" value="HELLO WORLD!\n\\e[D\\e[D\\e[D\\e[D\\e[D\\e[D\\e[D\\e[D\\e[D\\e[D\\e[D" padLeft="8px">TEST RECEIVER</control>
|
||||
</serial>
|
||||
<panel ref="/devices/pc8080/panel/wide.xml"/>
|
||||
<debugger id="debugger" messages="mem|port" commands="s 8086"/>
|
||||
</machine>
|
||||
Loading…
Reference in a new issue