aboutsummaryrefslogtreecommitdiff
path: root/examples/fib.asm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/fib.asm')
-rw-r--r--examples/fib.asm8
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/fib.asm b/examples/fib.asm
index 5542f48..4d61d5c 100644
--- a/examples/fib.asm
+++ b/examples/fib.asm
@@ -3,6 +3,10 @@
;;; pairs of fibonacci numbers, we ensure only a finite amount of
;;; memory is necessary for this program to function, unlike a pure
;;; stack version.
+
+ ;; Setup entrypoint
+ global main
+main:
;; Setup initial REG[0] = 1 and REG[1] = 1
push.word 1
mov.word 0
@@ -10,7 +14,7 @@
mov.word 1
;; Print REG[0] and REG[1]
- ;; Here is the loop back point `#`
+loopback:
push.byte '\t'
print.char
push.reg.word 0
@@ -41,5 +45,5 @@
push.reg.word 1
gte.word
;; Jump to `#`
- jump.if.byte 4
+ jump.if.byte loopback
halt