1
0
mirror of https://github.com/janet-lang/janet synced 2024-07-06 20:04:21 +00:00
janet/examples/sysdialect_asm.janet

11 lines
182 B
Plaintext
Raw Normal View History

2023-05-12 23:10:52 +00:00
(def ir-asm
@{:instructions
'((add 2 1 0)
(return 2))
:types
'(s32 s32 s32)
:parameter-count 2
:link-name "add_2_ints"})
(-> ir-asm sysir/asm sysir/to-c print)