mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-01 22:50:35 +00:00
17dc908420
Tests 10022-embedded-instructions and 10032-flags-and-branches were a mix of 6502 and 65816 code. The 6502 code has been separated into its own file, so that the tests can be run on 8-bit-only assemblers.
27 lines
476 B
ArmAsm
27 lines
476 B
ArmAsm
.setcpu "65816"
|
|
; .segment "SEG000"
|
|
.org $1000
|
|
.a8
|
|
.i8
|
|
jsr L1006
|
|
jmp L1020
|
|
|
|
L1006: sep #$30
|
|
lda $00
|
|
beq @L100F
|
|
lda #$00
|
|
brk
|
|
|
|
@L100F: sta $012345
|
|
lda $00
|
|
beq @L101A
|
|
lda #$00
|
|
.byte $85
|
|
@L101A: .byte $8f
|
|
eor $23
|
|
.byte $01
|
|
nop
|
|
rts
|
|
|
|
L1020: .byte $af
|