I have a little bit trouble getting started with the X16.
As what I can read the following code should write the character A to the screen and change the color.
Code: Select all
.org $080d
.segment "STARTUP"
.segment "INIT"
.segment "ONCE"
.segment "CODE"
lda #$00
sta $9F25
lda #$20
sta $9F22
lda #$00
sta $9F20
lda #$00
sta $9F21
lda #$41
sta $9F23
lda #$12
sta $9F23
rts