mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-02 13:51:36 +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.
50 lines
1.2 KiB
ArmAsm
50 lines
1.2 KiB
ArmAsm
; Copyright 2018 faddenSoft. All Rights Reserved.
|
|
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
|
;
|
|
; Assembler: Merlin 32
|
|
|
|
org $1000
|
|
|
|
lda zsplit
|
|
ora esplit
|
|
rts
|
|
|
|
asc3 asc '333' ;no match
|
|
dfb $80
|
|
asc4 asc '4444' ;run of 4, as ASCII
|
|
dfb $80
|
|
asc5 asc '55555' ;run of 5, as ASCII
|
|
dfb $80
|
|
ascM asc 'MMMMMMMMMM' ;run of 62, as ASCII
|
|
asc 'MMMMMMMMMM'
|
|
asc 'MMMMMMMMMM'
|
|
asc 'MMMMMMMMMM'
|
|
asc 'MMMMMMMMMM'
|
|
asc 'MMMMMMMMMM'
|
|
asc 'MM'
|
|
dfb $80
|
|
ascL asc 'LLLLLLLLLL' ;run of 63, as fill
|
|
asc 'LLLLLLLLLL'
|
|
asc 'LLLLLLLLLL'
|
|
asc 'LLLLLLLLLL'
|
|
asc 'LLLLLLLLLL'
|
|
asc 'LLLLLLLLLL'
|
|
asc 'LLL'
|
|
|
|
dfb $81
|
|
|
|
zero ds 3 ;no match
|
|
dfb $81
|
|
ds 4 ;no match
|
|
dfb $81
|
|
ds 5 ;fill of 5
|
|
dfb $81
|
|
|
|
; The auto-label should split these in half.
|
|
ds 8
|
|
zsplit ds 8
|
|
|
|
hex 8282828282828282
|
|
esplit hex 8282828282828282
|
|
|