blob: 4d61d5cf65decadba086eb30075c507c3f3b7ef2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
;;; fib.asm: A program that generates the fibonacci numbers up to a
;;; very large bound (~UINT64_MAX). Using the registers to store the
;;; 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
push.word 1
mov.word 1
;; Print REG[0] and REG[1]
loopback:
push.byte '\t'
print.char
push.reg.word 0
print.word
push.byte '\n'
print.char
push.byte '\t'
print.char
push.reg.word 1
print.word
push.byte '\n'
print.char
;; REG[0] += REG[1]
push.reg.word 0
push.reg.word 1
plus.word
mov.word 0
;; REG[1] += REG[0]
push.reg.word 0
push.reg.word 1
plus.word
mov.word 1
push.word 12200160415121876738
push.reg.word 1
gte.word
;; Jump to `#`
jump.if.byte loopback
halt
|