Added High Level Assembly implementation

This commit is contained in:
PyvesB
2017-10-07 12:25:56 +02:00
parent 4b610c522a
commit 475ba16e3c
2 changed files with 8 additions and 0 deletions

7
a/assembler_hla.hla Normal file
View File

@@ -0,0 +1,7 @@
program HelloWorld;
#include( "stdlib.hhf" );
begin HelloWorld;
stdout.put( "Hello, world!", nl );
end HelloWorld;