Added simple test programs

This commit is contained in:
Mitchell Plamann
2015-03-22 20:58:00 -04:00
parent 837efb7b2b
commit 6062716f1d
2 changed files with 27 additions and 0 deletions

3
test/iadd.c0 Executable file
View File

@@ -0,0 +1,3 @@
int main () {
return -1 + -1;
}

24
test/iadd.c0.bc0 Executable file
View File

@@ -0,0 +1,24 @@
C0 C0 FF EE # magic number
00 09 # version 4, arch = 1 (64 bits)
00 00 # int pool count
# int pool
00 00 # string pool total size
# string pool
00 01 # function count
# function_pool
#<main>
00 00 # number of arguments = 0
00 00 # number of local variables = 0
00 06 # code length = 6 bytes
10 FF # bipush -1 # -1
10 FF # bipush -1 # -1
60 # iadd # (-(1) + -(1))
B0 # return #
00 00 # native count
# native pool