mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-03 05:49:48 +00:00
149e763821
The documentation for 64tass says you're required to pass "--ascii" when the source file is ASCII (as opposed to PETSCII). We were ignoring this, but it turns out that everything works a bit better if we don't. So we now pass "--ascii" on the command line, and add a two-line character encoding definition to every file that is generated with ASCII as the default encoding. The sg_petscii and sg_screen encodings go away, as PETSCII is now the default, and we can use the built-in "screen" encoding.
80 lines
1.4 KiB
ArmAsm
80 lines
1.4 KiB
ArmAsm
.cpu "65816"
|
|
.enc sg_ascii
|
|
.cdef $20,$7e,$20
|
|
* = $1000
|
|
.as
|
|
.xs
|
|
clc
|
|
xce
|
|
sep #$30
|
|
jsr L1014
|
|
jsr L101C
|
|
jsr L102A
|
|
jsr L102F
|
|
jsr L1059
|
|
rts
|
|
|
|
L1014 lda #$00
|
|
.byte $2c
|
|
L1017 lda #$01
|
|
beq L1017
|
|
rts
|
|
|
|
L101C sep #$30
|
|
lda $00
|
|
beq L1025
|
|
lda #$00
|
|
brk
|
|
|
|
L1025 sta $012345
|
|
rts
|
|
|
|
L102A .byte $20
|
|
L102B rts
|
|
|
|
.byte $ea
|
|
bra L102B
|
|
|
|
L102F .byte $2c
|
|
L1030 .byte $2c
|
|
L1031 .byte $2c
|
|
L1032 .byte $2c
|
|
L1033 .byte $2c
|
|
L1034 .byte $2c
|
|
L1035 .byte $2c
|
|
L1036 .byte $2c
|
|
L1037 .byte $2c
|
|
L1038 nop
|
|
nop
|
|
asl a
|
|
bcc L102F
|
|
asl a
|
|
bcc L1030
|
|
asl a
|
|
bcc L1031
|
|
asl a
|
|
bcc L1032
|
|
asl a
|
|
bcc L1033
|
|
asl a
|
|
bcc L1034
|
|
asl a
|
|
bcc L1035
|
|
asl a
|
|
bcc L1036
|
|
asl a
|
|
bcc L1037
|
|
asl a
|
|
bcc L1038
|
|
rts
|
|
|
|
L1059 .byte $2c
|
|
L105A nop
|
|
.byte $ad
|
|
L105C lda $00
|
|
asl a
|
|
bcc L105A
|
|
asl a
|
|
bcc L105C
|
|
.byte $af
|