home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 16
/
amigaformatcd16.iso
/
-in_the_mag-
/
emulation
/
dragon32
/
asa_examples
/
ex2
< prev
next >
Wrap
Text File
|
1997-06-12
|
243b
|
17 lines
; An example of 6809e code
; By S.Goodwin 1996
; Write all 256 characters to the screen
start:
lda #0 ; set up 1st character
ldx #1024 ; start of screen
loop:
sta ,x+ ; store character, inc X
inca ; increment A
bne loop
rts