Successful first run of B interpreter!

I hand compiled hello.b into hello.s and assembled with the interpreter
and runtime library:
perl as7 --out a.out bl.s hello.s bi.s
This commit is contained in:
rswier
2016-03-07 05:57:30 -05:00
parent a7f040b8f5
commit 28a98360a4
6 changed files with 69 additions and 10 deletions
+9
View File
@@ -0,0 +1,9 @@
main $(
write('He');
write('ll');
write('o,');
write(' W');
write('or');
write('ld');
write('!*n');
$)