1
0
mirror of https://github.com/janet-lang/janet synced 2024-07-01 01:23:15 +00:00
janet/test/minimal.dsts

27 lines
404 B
Plaintext
Raw Normal View History

2017-12-08 20:57:02 +00:00
# A fairly minimal example of a dst assembly file
{
bytecode [
(load-integer 0 15)
(load-integer 1 0)
(load-constant 3 lookup)
:label
(equals 2 1 0)
(jump-if 2 :done)
(add-immediate 0 0 -1)
(get 2 3 0)
(push 2)
(syscall 2 0)
(jump :label)
:done
(return-nil)
2017-12-08 20:57:02 +00:00
:extra
(push 2)
]
constants [
(def lookup "0123456789abcdef")
]
}