1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-07-04 01:29:34 +00:00
6502bench/SourceGen/SGTestData/Expected/10022-embedded-instructions_cc65.S
Andy McFadden 3ff0fbae34 Regression test rework, part 1
The regression tests were written with the assumption that all cross
assemblers would support 6502, 65C02, and 65816 code.  There are a
few that support 65816 partially (e.g. ACME) or not at all.  To best
support these, we need to split some of the tests into pieces, so
that important 6502 tests aren't skipped simply because parts of the
test also exercise 65816 code.

The first step is to change the regression test naming scheme.  The
old system used 1xxx for tests without project files, and 2xxx for
tests with project files.  The new system uses 1xxxN / 2xxxN, where
N indicates the CPU type: 0 for 6502, 1 for 65C02, and 2 for 65816.
For the 1xxxN tests the new value determines which CPU is used,
which allows us to move the "allops" 6502/65C02 tests into the
no-project category.  For 2xxxN it just allows the 6502 and 65816
versions to have the same base name and number.

This change updates the first batch of tests.  It involves minor
changes to the test harness and a whole bunch of renaming.
2020-06-06 14:47:19 -07:00

79 lines
1.4 KiB
ArmAsm

.setcpu "65816"
; .segment "SEG000"
.org $1000
.a8
.i8
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