From a7cdd42947c7dc0f3b7769af988e40f460e4b02c Mon Sep 17 00:00:00 2001 From: Erick Date: Sat, 5 Feb 2022 02:17:05 +0100 Subject: [PATCH] Create helloworld.asm --- assembly/helloworld.asm | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 assembly/helloworld.asm 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