move remaining stuff from testcode/lib/ one level up to testcode/
This commit is contained in:
63
testcode/atari/scrcode.s
Normal file
63
testcode/atari/scrcode.s
Normal file
@@ -0,0 +1,63 @@
|
||||
; Christian Groessler, 30-Aug-2005
|
||||
;
|
||||
; scrcode macro test
|
||||
;
|
||||
; compile with
|
||||
; ca65 -I../../../asminc -tatari -o scrcode.o scrcode.s
|
||||
; ld65 -tatari -o scrcode.com scrcode.o
|
||||
|
||||
.import __CODE_LOAD__, __BSS_LOAD__
|
||||
|
||||
.include "atari.inc"
|
||||
.macpack atari
|
||||
|
||||
.code
|
||||
|
||||
rts ; SpartaDOS workaround
|
||||
|
||||
; entry point
|
||||
|
||||
lda #0
|
||||
tay
|
||||
tax
|
||||
|
||||
; display dispdata
|
||||
|
||||
disp: lda dispdata,x
|
||||
sta (SAVMSC),y
|
||||
inx
|
||||
iny
|
||||
cpx #disp_len
|
||||
bne disp
|
||||
|
||||
; wait for key press
|
||||
|
||||
key: lda CH
|
||||
cmp #255
|
||||
beq key
|
||||
|
||||
rts
|
||||
|
||||
.data
|
||||
|
||||
dispdata: scrcode "fooBa", 'r', $66, 3+4
|
||||
disp_len = * - dispdata
|
||||
|
||||
.export __AUTOSTART__: absolute = 1
|
||||
.segment "AUTOSTRT"
|
||||
|
||||
.word $02E0
|
||||
.word $02E1
|
||||
.word __CODE_LOAD__+1
|
||||
|
||||
.export __EXEHDR__: absolute = 1
|
||||
.segment "EXEHDR"
|
||||
|
||||
.word $FFFF
|
||||
|
||||
.segment "MAINHDR"
|
||||
|
||||
.word __CODE_LOAD__
|
||||
.word __BSS_LOAD__ - 1
|
||||
|
||||
.end
|
||||
Reference in New Issue
Block a user