From b4fce03177df15f200950591922298892f62a60e Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Fri, 3 Nov 2023 07:55:23 +0000 Subject: [PATCH] Made test.asm an example asm program --- test.asm => examples/memory-print.asm | 2 ++ 1 file changed, 2 insertions(+) rename test.asm => examples/memory-print.asm (90%) diff --git a/test.asm b/examples/memory-print.asm similarity index 90% rename from test.asm rename to examples/memory-print.asm index 8131003..ed32b7a 100644 --- a/test.asm +++ b/examples/memory-print.asm @@ -1,3 +1,5 @@ +;;; memory-print: An example program that features a subroutine for +;;; printing a memory buffer, of any length, as characters. ;; Allocate a buffer of 3 characters malloc.byte 3 mov.word 0