1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-29 03:56:15 +00:00
kickc/src/test/ref/cstyle-decl-function-intrinsic.asm

10 lines
157 B
NASM
Raw Normal View History

// Test declaration of intrinsic without body
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
// Definition of main()
main: {
// }
rts
}