Renamed: hello.s -> hello-asm.s

This commit is contained in:
Olli Savia
2024-06-16 09:35:44 +03:00
parent 5976e3b85d
commit a1ca451e69
2 changed files with 5 additions and 5 deletions

15
samples/cbm/hello-asm.s Normal file
View File

@@ -0,0 +1,15 @@
;
; Sample assembly program for Commodore machines
;
.include "cbm_kernal.inc"
ldx #$00
: lda text,x
beq out
jsr CHROUT
inx
bne :-
out: rts
text: .asciiz "hello world!"