1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-07 17:29:31 +00:00
8bitworkshop/test/ecs/narrow1.txt
2022-02-23 11:07:09 -06:00

37 lines
453 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__start__1
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__start__1
.endscope
Main__Start = Main::__Start