Add missing test files

This commit is contained in:
2018-05-26 15:35:58 +02:00
parent 7898c76570
commit 2fe47fe30c
82 changed files with 52716 additions and 2 deletions

19
files/task4/IINCTest.jas Normal file
View File

@@ -0,0 +1,19 @@
.main
.var
hi
there
.end-var
L1:
BIPUSH 0
DUP
ISTORE hi
ISTORE there
IINC hi 0
IINC hi 1
IINC hi 3
IINC there 0
IINC there -1
IINC there -3
HALT
.end-main