mirror of
https://github.com/a2stuff/prodos-path.git
synced 2024-12-27 13:29:22 +00:00
21 lines
330 B
ArmAsm
21 lines
330 B
ArmAsm
|
|
.include "apple2.inc"
|
|
.include "more_apple2.inc"
|
|
|
|
.org $4000
|
|
|
|
jsr CROUT
|
|
ldx #0
|
|
: lda str,x
|
|
beq done
|
|
ora #$80
|
|
jsr COUT
|
|
inx
|
|
jmp :-
|
|
|
|
done: jsr CROUT
|
|
|
|
clc
|
|
rts
|
|
|
|
str: .byte "Hello, world!", 0 |