prodos-path/hello.s
Joshua Bell 55daa9a905 works
2019-01-07 21:45:39 -08:00

21 lines
317 B
ArmAsm

.include "apple2.inc"
CROUT := $FD8E
COUT := $FDED
.org $4000
jsr CROUT
ldx #0
: lda str,x
beq done
ora #$80
jsr COUT
inx
jmp :-
done: jsr CROUT
rts
str: .byte "Hello, world!", 0