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

BIN
files/task1/program1.ijvm Normal file

Binary file not shown.

10
files/task1/program1.jas Normal file
View File

@@ -0,0 +1,10 @@
.constant
.end-constant
.main
BIPUSH 0x30
BIPUSH 0x31
IADD
OUT
HALT
.end-main

BIN
files/task1/program2.ijvm Normal file

Binary file not shown.

18
files/task1/program2.jas Normal file
View File

@@ -0,0 +1,18 @@
.constant
piet 1
koos 2
jan 3
.end-constant
.main
NOP
LDC_W piet
DUP
LDC_W koos
IADD
LDC_W jan
IADD
OUT
NOP
HALT
.end-main