projects
/
ohcount
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
OTWO-1213 Works around lost encoding in Ruby/C binding layer
[ohcount]
/
test
/
detect_files
/
assembler6502.asx
1
; "Hello world" in 6502 assembly language for 8-bit Atari.
2
; Assembler: http://xasm.atari.org/ or http://mads.atari8.info/
3
4
org $3000
5
main lda #$21
6
sta $22f
7
lda #<dl
8
sta $230
9
lda #>dl
10
sta $231
11
jmp *
12
13
text dta d' HELLO, ',d'WORLD! '*
14
15
; Display List
16
dl dta b($70),b($70),b($70),b($47),a(text),b($41),a(dl)
17
18
org $2e0
19
dta a(main)
20
21
end