mirror of
https://github.com/fachat/xa65.git
synced 2025-01-16 19:32:04 +00:00
20 lines
261 B
NASM
20 lines
261 B
NASM
.word $9000
|
|
* = $9000
|
|
|
|
w = 10
|
|
|
|
glorb
|
|
|
|
.dsb 9,10 ; +9
|
|
.byt 6, 6, 6, "devil", 'Q' ; +9 => 18
|
|
.bin 0,5,'README.1st' ; +5 => 23
|
|
.bin w,w+256,'README.1st' ; +266 => 289 ($0121)
|
|
|
|
gleeb
|
|
; $0123
|
|
jmp glorb
|
|
; should be $9121 (remember the SA)
|
|
jmp gleeb
|
|
bne *
|
|
|