Add sample uASM program

This commit is contained in:
Gabriel Tofvesson 2019-04-06 23:15:14 +02:00
parent 2c9e19b6fe
commit 650cb46417

10
test.uc Normal file
View File

@ -0,0 +1,10 @@
# Move value in GR to HR and increment PCL
lcset 16
$LOOP
incpc; declc
bls @END # Branch to micro-address 0 if L-flag is set
bra @LOOP
$END
HALT