just starting out and trying work it all out using what i can find online. I keep finding examples and how-tos that are out of date.
I am trying to follow "The Retro Desk" video on the Vera but he goes from zero to flat out in the one video.
Hopefully someone can help here.
I am trying to print a string to the screen but change the colour.
Code: Select all
Start
ldx #$00
Loops
lda message, x
jsr $FFD2
inx
cpx #$0B
bne Loops
rts
message .text "HELLO WORLD"