blob: ea1bc6103082549079cc6198aff85527021a8af1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<test name="tstaxh test" type="srfull"
description="This test checks the effect of various ax0.h values over tstaxh">
<header>
incdir "tests"
include "dsp_base.inc"
</header>
<body>
lri $SR, #0x0000
lri $ax0.h, @SR@
tstaxh $ax0.h
call send_back
lri $SR, #0xffff
lri $ax0.h, @SR@
tstaxh $ax0.h
call send_back
</body>
</test>
|