aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips64-dsp/pick_qb.c
blob: 0d5de9db9ed543142e2759c3b2fdde39e8828ef8 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include "io.h"

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

    rs = 0x12345678;
    rt = 0x87654321;
    dsp = 0x0f000000;
    result = 0x12345678;

    __asm
        ("wrdsp %3, 0x10\n\t"
         "pick.qb %0, %1, %2\n\t"
         : "=r"(rd)
         : "r"(rs), "r"(rt), "r"(dsp)
        );
    if (rd != result) {
        printf("pick.qb wrong\n");

        return -1;
    }

    rs = 0x12345678;
    rt = 0x87654321;
    dsp = 0x00000000;
    result = 0xffffffff87654321;

    __asm
        ("wrdsp %3, 0x10\n\t"
         "pick.qb %0, %1, %2\n\t"
         : "=r"(rd)
         : "r"(rs), "r"(rt), "r"(dsp)
        );
    if (rd != result) {
        printf("pick.qb wrong\n");

        return -1;
    }

    return 0;
}