8bitworkshop/test/ecs/narrow1.txt

37 lines
449 B
Plaintext

.scope Main
.zeropage
Xpos_x_b0:
.res 1
.res 1
.res 1
.res 1
.code
Main__INITDATA:
.byte 0
.byte 50
.byte 100
.byte 150
__Start:
ldy #4
: lda Main__INITDATA-1,y
sta Xpos_x_b0-1,y
dey
bne :-
;;; start action move 1 start
ldx #0
move__start__1____each:
lda Xpos_x_b0+2,x
inx
cpx #2
jne move__start__1____each
move__start__1____exit:
;;; end action move 1 start
.endscope
Main__Start = Main::__Start