Minimal infrastructure for instantiating a PDP-10 test machine

This commit is contained in:
Jeff Parsons 2017-02-23 11:34:19 -08:00 committed by Jeff Parsons
commit c25ad00c41
15 changed files with 181 additions and 13 deletions

View file

@ -0,0 +1,10 @@
---
layout: page
title: PDP-10 Test Panel with Debugger
permalink: /devices/pdp10/panel/test/debugger/
---
PDP-10 Test Panel with Debugger
-------------------------------
* [Terminal Test Panel with Debugger](terminal.xml)

View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<panel id="panel" width="100%" padding="8px">
<name>Control Panel</name>
<control type="container" class="pcjs-textarea" width="60%" padBottom="8px">
<control type="textarea" binding="print" width="100%" height="340px" padRight="8px" pos="relative" style="resize:vertical;"/>
<control type="container" width="100%">
<control type="text" binding="debugInput" width="auto"/>
<control type="button" binding="debugEnter">Enter</control>
<control type="button" binding="clear">Clear</control>
</control>
</control>
<control type="container" class="pcjs-registers" width="35%" padLeft="8px">
<name>Registers</name>
<control type="register" label="PC" binding="PC" pos="left" width="60px" padRight="8px" padBottom="8px">000000</control>
</control>
<control type="container" class="pcjs-registers" width="35%" padLeft="8px" padBottom="8px">
<control type="button" binding="run">Run</control>
<control type="button" binding="step">Step</control>
<control type="button" binding="reset">Reset</control>
<control type="button" binding="setSpeed">Fast</control>
<control type="description" binding="speed" pos="default">Stopped</control>
</control>
</panel>