1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 02:24:34 +00:00
kickc/src/test/ref/test-kasm.asm

13 lines
161 B
NASM
Raw Normal View History

2019-02-17 23:12:29 +00:00
// Test inline KickAssembler code
.pc = $801 "Basic"
2018-12-25 16:44:43 +00:00
:BasicUpstart(main)
.pc = $80d "Program"
.byte 1, 2, 3
main: {
b2:
inc $d020
jmp b2
}