blob: bff9e3ea590b408d700a880939bd2624c111f2fb (
plain) (
blame)
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
|
#include <stdio.h>
int main(void)
{
int a, b, c;
int result;
b = 0x120;
c = 0x4;
result = 0x48;
__asm
("l.divu %0, %1, %2\n\t"
: "=r"(a)
: "r"(b), "r"(c)
);
if (a != result) {
printf("divu error\n");
return -1;
}
result = 0x4;
__asm
("l.divu %0, %1, %0\n\t"
: "+r"(a)
: "r"(b)
);
if (a != result) {
printf("divu error\n");
return -1;
}
return 0;
}
|