10 lines
163 B
Text
10 lines
163 B
Text
|
|
InfiniteLoop LDX #0
|
||
|
|
PrintLoop: LDA MSG,x
|
||
|
|
JSR PrintAccumulator ;routine not implemented
|
||
|
|
INX
|
||
|
|
CPX #5
|
||
|
|
BNE PrintLoop
|
||
|
|
BEQ InfiniteLoop
|
||
|
|
|
||
|
|
MSG .byte "SPAM", $0A
|