summaryrefslogtreecommitdiff
path: root/projects/hack-as/test/conventional.asm
diff options
context:
space:
mode:
Diffstat (limited to 'projects/hack-as/test/conventional.asm')
-rw-r--r--projects/hack-as/test/conventional.asm32
1 files changed, 32 insertions, 0 deletions
diff --git a/projects/hack-as/test/conventional.asm b/projects/hack-as/test/conventional.asm
new file mode 100644
index 0000000..5510424
--- /dev/null
+++ b/projects/hack-as/test/conventional.asm
@@ -0,0 +1,32 @@
+// conventional asm a sane person would write
+// draw a rectangle on top left of screen
+// width 16px, height specified in RAM[0]
+@0
+D=M
+@INFINITE_LOOP
+D;JLE // reject if height is negative
+@counter
+M=D
+@SCREEN
+D=A
+@address
+M=D
+(LOOP)
+ @address
+ A=M
+ M=-1
+ @address
+ D=M
+ @32
+ D=D+A
+ @address
+ M=D
+ @counter
+ MD=M-1
+ @LOOP
+ D;JGT
+
+(INFINITE_LOOP)
+ @INFINITE_LOOP
+ 0;JMP
+