mirror of
https://github.com/janet-lang/janet
synced 2024-11-05 00:06:16 +00:00
11 lines
182 B
Plaintext
11 lines
182 B
Plaintext
|
(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)
|