diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-11-03 07:55:23 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-11-03 07:55:23 +0000 |
commit | b4fce03177df15f200950591922298892f62a60e (patch) | |
tree | d0110f8eac8ec3f7336f9b241bcbe3371d6c252d | |
parent | fc4b9702d21b594268220ea761a390ff87c932e0 (diff) | |
download | ovm-b4fce03177df15f200950591922298892f62a60e.tar.gz ovm-b4fce03177df15f200950591922298892f62a60e.tar.bz2 ovm-b4fce03177df15f200950591922298892f62a60e.zip |
Made test.asm an example asm program
-rw-r--r-- | examples/memory-print.asm (renamed from test.asm) | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test.asm b/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 |