Im trying to write a game in 6502 assembly langage but my sprite does not want to move:My sprite is at $200 so I did the follow:
Spriteloop:
LDX $200 ;loading content of $200 address in X register
INX ;increment the number
JMP Spriteloop ;loop back to move again
However,it doesnt work,my sprite does not move.
Thank you