modify compiler to fix return values and add support for vm ffi

This commit is contained in:
Alex Zenla
2025-03-15 23:34:16 -07:00
parent 4100752f1c
commit 2f5ea4629d
3 changed files with 42 additions and 28 deletions

View File

@ -1,2 +1,2 @@
export func printf(format, arguments...)
native ffi "c:printf:int:char*,..."
native ffi "c" "int printf(int argc, ...)"