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

View File

@ -71,6 +71,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Assembler Atari2600](a/assembler_atari2600.asm)
* [Assembler Dcpu16](a/assembler_DCPU16.asm)
* [Assembler Fasm Dos](a/assembler_fasm_dos.asm)
* [Assembler Hla](a/assembler_hla.hla)
* [Assembler Ibm360](a/assembler_ibm360.asm)
* [Assembler Intel](a/assembler_intel.asm)
* [Assembler Lc 3](a/assembler_lc-3.asm)

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;