1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-06-02 00:41:42 +00:00
kickc/src/test/kc/cpu-huc6280.c
2022-01-24 01:04:31 +01:00

28 lines
246 B
C

// Tests the HUC6280 instructions
#pragma cpu(huc6280)
void main() {
asm {
sxy
st0 #$55
st1 #$aa
sax
st2 #$be
say
tma #2
bsr !+
tam #4
csl
cla
clx
cly
csh
set
!:
rts
}
}