aboutsummaryrefslogtreecommitdiff
path: root/examples/fib.asm
blob: 85df000ed22394f1b0adbe136f515f1213b36637 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
;;; 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 iterator i
  push.word 1
  mov.word 2
  ;; 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:
  call print_pair

  ;;  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

print_pair:
  push.byte '\t'
  print.char
  call print_i
  push.byte ':'
  print.char
  push.byte ' '
  print.char
  call print_reg_0
  push.byte '\n'
  print.char
  call increment_i
  push.byte '\t'
  print.char
  call print_i
  push.byte ':'
  print.char
  push.byte ' '
  print.char
  call print_reg_1
  push.byte '\n'
  print.char
  call increment_i
  ret

increment_i:
  push.reg.word 2
  push.word 1
  plus.word
  mov.word 2
  ret

print_i:
  push.reg.word 2
  print.word
  ret

print_reg_0:
  push.reg.word 0
  print.word
  ret

print_reg_1:
  push.reg.word 1
  print.word
  ret