2018-10-23 23:06:29 +00:00
|
|
|
;Project file was edited for some ASCII operands.
|
|
|
|
.cpu "65816"
|
2019-08-21 20:30:25 +00:00
|
|
|
.enc sg_hiascii
|
|
|
|
.cdef $20,$7e,$a0
|
2019-08-20 18:21:30 +00:00
|
|
|
.enc sg_ascii
|
|
|
|
.cdef $20,$7e,$20
|
2018-10-23 23:06:29 +00:00
|
|
|
* = $1000
|
|
|
|
.as
|
|
|
|
.xs
|
|
|
|
clc
|
|
|
|
xce
|
|
|
|
sep #$30
|
|
|
|
lda $01
|
|
|
|
lda $0102
|
|
|
|
lda $010203
|
|
|
|
lda 1
|
|
|
|
lda 258
|
|
|
|
lda 66051
|
|
|
|
lda %00000001
|
|
|
|
lda %0000000100000010
|
|
|
|
lda %000000010000001000000011
|
|
|
|
bra skipdata
|
|
|
|
|
|
|
|
.byte $01
|
|
|
|
.word $0201
|
|
|
|
.long $030201
|
|
|
|
.dword $04030201
|
|
|
|
.byte 1
|
|
|
|
.word 513
|
|
|
|
.long 197121
|
|
|
|
.dword 67305985
|
|
|
|
.byte %00000001
|
|
|
|
.word %0000001000000001
|
|
|
|
.long %000000110000001000000001
|
|
|
|
.dword %00000100000000110000001000000001
|
|
|
|
|
|
|
|
skipdata lda #'h'
|
|
|
|
lda 'h'
|
|
|
|
lda @w'h'
|
|
|
|
lda @l'h'
|
|
|
|
lda #$1f
|
|
|
|
lda #' '
|
2019-08-15 00:25:40 +00:00
|
|
|
lda #'"'
|
|
|
|
lda #$27
|
2018-10-23 23:06:29 +00:00
|
|
|
lda #'~'
|
|
|
|
lda #$7f
|
|
|
|
lda #$80
|
|
|
|
lda #$9f
|
2019-08-12 00:59:20 +00:00
|
|
|
lda #' ' | $80
|
2019-08-15 00:25:40 +00:00
|
|
|
lda #'"' | $80
|
|
|
|
lda #$a7
|
2019-08-12 00:59:20 +00:00
|
|
|
lda #'~' | $80
|
2018-10-23 23:06:29 +00:00
|
|
|
lda #$ff
|
|
|
|
rep #'0'
|
|
|
|
.al
|
|
|
|
.xl
|
|
|
|
lda #'h'
|
2019-08-12 00:59:20 +00:00
|
|
|
lda #'H' | $80
|
2018-10-23 23:06:29 +00:00
|
|
|
lda #$6868
|
|
|
|
rts
|
|
|
|
|
|
|
|
more_ascii .byte 'h'
|
|
|
|
.byte $80
|
|
|
|
.word $6868
|
|
|
|
.byte $80
|
|
|
|
.word skipdata
|
|
|
|
.long skipdata
|
|
|
|
.byte $10,$3f
|
|
|
|
.byte <more_ascii
|
|
|
|
.byte >more_ascii
|
|
|
|
.word more_ascii
|
|
|
|
.long more_ascii
|
2019-08-15 00:25:40 +00:00
|
|
|
.byte $10,$70
|