Compare commits

...

3 Commits

Author SHA1 Message Date
Paul Warren 0ef9f81dee Example Assembler 2024-02-20 19:16:57 +11:00
Paul Warren 6eeb2ef28e Hillbilly1 link 2024-02-20 19:14:32 +11:00
Paul Warren 0b109ef63a Credits URL 2024-02-20 19:13:46 +11:00
3 changed files with 62 additions and 6 deletions

View File

@ -1,4 +1,4 @@
<div id="header" class="header">
<h1><a href="/">DAVIAC: A Relay Computer</a></h1>
<p>Designed and built by Dr David Warren. Hillibilly1 Assembler by Dr Kym Hill. Website by Paul Warren</p>
<p>Designed and built by Dr David Warren. Hillibilly1 Assembler by Dr Kym Hill. Website by <a href="https://pwarren.id.au/">Paul Warren</a></p>
</div>

View File

@ -88,8 +88,65 @@ WAIT : 0c 00001100
\ :
</pre>
<p> <a href="/hillbilly1/ADD16.asm">Here</a> is an example 16 bit adder program for the DAVIAC-1.</p>
<p> The Assembler produces the <a href="/hillbilly1/ADD16.hex">Hex</a> and a <a href="/hillbilly1/ADD16.lst">run list</a>.
<p> <a href="/hillbilly1/ADD16.asm">Here</a> is an example 16 bit adder program for the DAVIAC-1.</p>
<pre>
\ RAM Variables
ORG 0800H \RAM at 0800h
DEF X_Lo *1
DEF X_Hi *1
DEF Y_Lo *1
DEF Y_Hi *1
DEF Z_Lo *1
DEF Z_Hi *1
DEF Carry_Lo *1
DEF Carry_Hi *1
ORG 0400h
\
\ load some numbers
\
\ Put numbers in X and Y at 0800H by hand from Control Panel.
\
\
\ 16bit ADD X + Y -> Z + Carry_Hi
\
\
NOP
ADD16:
WAIT
STAZ Carry_Lo \Clear lo carry
LDAA X_Lo
LDAB Y_Lo
ADD \ADD lo bytes
STAC Z_Lo \store partial sum
BRNO ADD16J1: \test OVF bit to see if Carry required
LDIA 01h \must be OVF, set a Carry_Lo
STAA Carry_Lo
ADD16J1:
STAZ Carry_Hi \Clear hi carry
LDAA X_Hi
LDAB Y_Hi
ADD \ADD hi bytes
STAC Z_Hi \store hi partial sum
BRNO ADD16J2:
LDAA 01h \might be a hi carry
STAA Carry_Hi
ADD16J2:
MOVC,A
LDAB Carry_Lo \include any lo carry
ADD
STAC Z_Hi
BRNO ADD16J3:
LDAA 01h
STAA Carry_Hi \which may trigger a hi carry
ADD16J3:
\
BRA ADD16:
\
\ end of ADD16p
</pre>
<p> The Assembler produces the <a href="/hillbilly1/ADD16.hex">Hex</a> and a <a href="/hillbilly1/ADD16.lst">run list</a>.
</div>
<?php include("footer.php"); ?>

View File

@ -17,15 +17,14 @@
<li><a href="pdf/Clock.pdf">Clock</a></li>
<li><a href="pdf/RF8.pdf">Scratch RAM and IO</a></li>
<li><a href="pdf/ROM.pdf">ROM</a></li>
<li><a href="pdf/Timing-PDF.pdf">Instruction Timing</a></li>
</ul>
<div class="hidden-mobile">
<h3>PCBs</h3>
<ul>
<li>Coming Soon</li>
</ul>
<h3>Programming</h3>
<ul>
<li>Coming Soon</li>
<h3><a href="hillibilly1.php">Programming</a></h3>
</ul>
<h2>DAVIAC-2</h2>
<ul>