aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips32-dsp/precrqu_s_qb_ph.c
blob: 7481d5af3a5b2a1fb0e678905bd3fdade36aa9bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include<stdio.h>
#include<assert.h>

int main()
{
    int rd, rs, rt;
    int dsp;
    int result;

    rs = 0x12345678;
    rt = 0x87657FFF;
    result = 0x24AC00FF;

    __asm
        ("precrqu_s.qb.ph %0, %2, %3\n\t"
         "rddsp %1\n\t"
         : "=r"(rd), "=r"(dsp)
         : "r"(rs), "r"(rt)
        );
    assert(result == rd);
    assert(((dsp >> 22) & 0x01) == 0x01);

    return 0;
}