I've got the code below that works when I use the CHROUT function, but when I change it to console_put_char, I see no output. I see similar problems with other new x16-specific new kernel functions. So can we assume those functions are not fully implemented yet?
Question
Craig
I've got the code below that works when I use the CHROUT function, but when I change it to console_put_char, I see no output. I see similar problems with other new x16-specific new kernel functions. So can we assume those functions are not fully implemented yet?
Thanks,
Craig
ldx #0
again:
lda hello, x
cmp #0
beq done
stx SaveX
;jsr $FEDE ; console_put_char
jsr $FFD2 ; CHROUT
ldx SaveX
inx
jmp again
done:
rts
SaveX: .byte 0
hello:
.byte "hello world! ", $00
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.