1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 17:24:39 +00:00
kickc/src/test/ref/struct-8.asm
2019-11-03 17:05:55 +01:00

18 lines
329 B
NASM

// Minimal struct - nested struct where a sub-struct is assigned out
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
main: {
.label SCREEN = $400
.const p_x = $a
.const p_y = $a
.const c_radius = 5
lda #p_x
sta SCREEN
lda #p_y
sta SCREEN+1
lda #c_radius
sta SCREEN+1
rts
}