summaryrefslogtreecommitdiffstats
path: root/ue3/mycpu/test
diff options
context:
space:
mode:
authorGünther Neuwirth <e0626638@student.tuwien.ac.at>2009-05-12 15:27:58 +0200
committerGünther Neuwirth <e0626638@student.tuwien.ac.at>2009-05-12 15:27:58 +0200
commit34483e07a0548d32651cda4ca4282f3cf8cae870 (patch)
treeef499b9850e60cc45ca4de1605c962a5cc040a8f /ue3/mycpu/test
parentfe1ef6b47f59899e8687bb1dcc92eba1d103a08f (diff)
downloadooprog-34483e07a0548d32651cda4ca4282f3cf8cae870.tar.gz
ooprog-34483e07a0548d32651cda4ca4282f3cf8cae870.tar.bz2
ooprog-34483e07a0548d32651cda4ca4282f3cf8cae870.zip
adding rest of files
Diffstat (limited to 'ue3/mycpu/test')
-rw-r--r--ue3/mycpu/test/test_prog13
-rw-r--r--ue3/mycpu/test/test_prog_mem1
2 files changed, 14 insertions, 0 deletions
diff --git a/ue3/mycpu/test/test_prog b/ue3/mycpu/test/test_prog
new file mode 100644
index 0000000..7c5f929
--- /dev/null
+++ b/ue3/mycpu/test/test_prog
@@ -0,0 +1,13 @@
1# set R2 = 10
2load R1, R2
3
4# start of loop
5label Loop:
6inc R3
7sub R4, R3, R2
8test R4
9jumpz EndLoop
10write WDEZ, R3
11jumpa Loop
12
13label EndLoop:
diff --git a/ue3/mycpu/test/test_prog_mem b/ue3/mycpu/test/test_prog_mem
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/ue3/mycpu/test/test_prog_mem
@@ -0,0 +1 @@
10