Humble Beginnings
I'm not even sure why I posted this here, except to show anyone interested that I am beginning asm and have compiled my first HLA program:
Now some of you might notice this looks a lot like a HLL, well that is because HLA hooks our knowledge of HLL to accelerate its readers understanding of ASM, otherwise it would take weeks of work just to learn enough to create an I/O system so that we can see out progress. Later on HLA will start relying more on pure ASM once one has a good grasp of the elementary ideas.
Code:
program helloWorld
#include("stdlib.hhf");
begin helloWorld;
stdout.put("Hello, World of Assembly Language", nl);
end helloWorld;




(You'd have to have a 16-bit linker to get that sample to work btw
...