mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-01 22:50:35 +00:00
3ff0fbae34
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.
75 lines
1.2 KiB
ArmAsm
75 lines
1.2 KiB
ArmAsm
org $1000
|
|
clc
|
|
xce
|
|
sep #$30
|
|
jsr L1014
|
|
jsr L101C
|
|
jsr L102A
|
|
jsr L102F
|
|
jsr L1059
|
|
rts
|
|
|
|
L1014 lda #$00
|
|
dfb $2c
|
|
:L1017 lda #$01
|
|
beq :L1017
|
|
rts
|
|
|
|
L101C sep #$30
|
|
lda $00
|
|
beq :L1025
|
|
lda #$00
|
|
brk
|
|
|
|
:L1025 stal $012345
|
|
rts
|
|
|
|
L102A dfb $20
|
|
:L102B rts
|
|
|
|
dfb $ea
|
|
bra :L102B
|
|
|
|
L102F dfb $2c
|
|
:L1030 dfb $2c
|
|
:L1031 dfb $2c
|
|
:L1032 dfb $2c
|
|
:L1033 dfb $2c
|
|
:L1034 dfb $2c
|
|
:L1035 dfb $2c
|
|
:L1036 dfb $2c
|
|
:L1037 dfb $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 dfb $2c
|
|
:L105A nop
|
|
dfb $ad
|
|
:L105C lda $00
|
|
asl A
|
|
bcc :L105A
|
|
asl A
|
|
bcc :L105C
|
|
dfb $af
|