1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 08:41:30 +00:00
8bitworkshop/test/ecs/narrow1.txt
2022-02-27 10:17:27 -06:00

38 lines
470 B
Plaintext

EVENT__start = 1
.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__start__1
ldx #0
move__start__2____each:
lda Xpos_x_b0+2,x
inx
cpx #2
jne move__start__2____each
move__start__2____exit:
;;; end action move__start__1
.endscope
Main__Start = Main::__Start