mirror of
https://github.com/koute/pinky.git
synced 2025-04-02 10:31:50 -04:00
74 lines
1.2 KiB
ArmAsm
74 lines
1.2 KiB
ArmAsm
.include "instr_test.inc"
|
|
|
|
instrs:
|
|
entry $A9,"LDA #n" ; AXY = #n
|
|
entry $A2,"LDX #n"
|
|
entry $A0,"LDY #n"
|
|
|
|
entry $69,"ADC #n" ; A = A op #n
|
|
entry $E9,"SBC #n"
|
|
entry $09,"ORA #n"
|
|
entry $29,"AND #n"
|
|
entry $49,"EOR #n"
|
|
|
|
entry $C9,"CMP #n" ; AXY op #n
|
|
entry $E0,"CPX #n"
|
|
entry $C0,"CPY #n"
|
|
.ifndef OFFICIAL_ONLY
|
|
entry $EB,"SBC #n"
|
|
|
|
entry $80,"DOP #n"
|
|
entry $82,"DOP #n"
|
|
entry $89,"DOP #n"
|
|
entry $C2,"DOP #n"
|
|
entry $E2,"DOP #n"
|
|
|
|
entry $0B,"AAC #n"
|
|
entry $2B,"AAC #n"
|
|
entry $4B,"ASR #n"
|
|
entry $6B,"ARR #n"
|
|
entry $AB,"ATX #n"
|
|
entry $CB,"AXS #n"
|
|
.endif
|
|
instrs_size = * - instrs
|
|
|
|
operand = instr+1
|
|
|
|
instr_template:
|
|
lda #0
|
|
jmp instr_done
|
|
instr_template_size = * - instr_template
|
|
|
|
.define set_in set_paxyso
|
|
.define check_out check_paxyso
|
|
|
|
.include "instr_test_end.s"
|
|
|
|
test_values:
|
|
test_normal
|
|
rts
|
|
|
|
correct_checksums:
|
|
.dword $5D5728B8
|
|
.dword $EA228F76
|
|
.dword $7C0C60CB
|
|
.dword $49288BFC
|
|
.dword $14C7EA46
|
|
.dword $42684E66
|
|
.dword $EA1D7F06
|
|
.dword $512F9D2A
|
|
.dword $70AA1B34
|
|
.dword $D3DC4002
|
|
.dword $6675067C
|
|
.dword $14C7EA46
|
|
.dword $6CB13BC0
|
|
.dword $6CB13BC0
|
|
.dword $6CB13BC0
|
|
.dword $6CB13BC0
|
|
.dword $6CB13BC0
|
|
.dword $FE191060
|
|
.dword $FE191060
|
|
.dword $27355577
|
|
.dword $C6B8642B
|
|
.dword $D311C870
|
|
.dword $EE21BFAD
|