1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 17:24:39 +00:00
kickc/src/test/ref/const-mult-div.asm
2019-02-18 00:12:30 +01:00

12 lines
214 B
NASM

// Test a constant with multiplication and division
.pc = $801 "Basic"
:BasicUpstart(main)
.pc = $80d "Program"
main: {
.label screen = $400
.const b = 6*$e/3+mod($16,3)
lda #b
sta screen
rts
}