2018-03-18 13:13:21 +00:00
|
|
|
# Example of dst bytecode assembly
|
2018-03-16 18:34:48 +00:00
|
|
|
|
|
|
|
# Fibonacci sequence, implemented with naive recursion.
|
2018-05-09 21:01:58 +00:00
|
|
|
(def fibasm (asm.asm '{
|
2018-03-16 18:34:48 +00:00
|
|
|
arity 1
|
|
|
|
bytecode [
|
2018-03-16 19:45:24 +00:00
|
|
|
(ldi 1 0x2) # $1 = 2
|
2018-03-16 18:34:48 +00:00
|
|
|
(lt 1 0 1) # $1 = $0 < $1
|
2018-05-08 23:40:28 +00:00
|
|
|
(jmpif 1 :done) # if ($1) goto :done
|
2018-03-16 19:45:24 +00:00
|
|
|
(lds 1) # $1 = self
|
2018-03-16 18:34:48 +00:00
|
|
|
(addim 0 0 -0x1) # $0 = $0 - 1
|
2018-03-23 22:36:56 +00:00
|
|
|
(push 0) # push($0), push argument for next function call
|
2018-03-16 18:34:48 +00:00
|
|
|
(call 2 1) # $2 = call($1)
|
|
|
|
(addim 0 0 -0x1) # $0 = $0 - 1
|
|
|
|
(push 0) # push($0)
|
|
|
|
(call 0 1) # $0 = call($1)
|
|
|
|
(addi 0 0 2) # $0 = $0 + $2 (integers)
|
2018-03-16 19:45:24 +00:00
|
|
|
:done
|
2018-03-16 18:34:48 +00:00
|
|
|
(ret 0) # return $0
|
|
|
|
]
|
|
|
|
}))
|