XWSTR0
Displays a string
.include "telestrat.inc"
lda #<str
ldy #>str
BRK_KERNEL XWSTR0
rts
str:
.asciiz "Hello world"
See print macro from orix-sdk to use it easily
Last update:
2024-02-15
Displays a string
.include "telestrat.inc"
lda #<str
ldy #>str
BRK_KERNEL XWSTR0
rts
str:
.asciiz "Hello world"
See print macro from orix-sdk to use it easily