1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Delete samples/cbm/hello.s

This commit is contained in:
Clay Shippy 2024-02-19 15:37:57 -07:00 committed by GitHub
parent d0c1b9a47b
commit 38e9c16a5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +0,0 @@
.macpack cbm
start:
lda #14
jsr $ffd2
ldy #0
loop:
lda message,y
beq done
sta $0400,y
iny
bne loop
done:
rts
message:
scrcode "Hello, World!@"