diff --git a/assembly/helloworld.asm b/assembly/helloworld.asm new file mode 100644 index 0000000..c8c1d6c --- /dev/null +++ b/assembly/helloworld.asm @@ -0,0 +1,6 @@ +.ORIG x3000; +LEA R0, HENLO_STR; +PUTs; +HALT; +HENLO_STR .STRINGZ "Henlo world"; +.END \ No newline at end of file