36 lines
603 B
C
36 lines
603 B
C
|
#include<stdio.h>
|
||
|
#include<assert.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int rd, rs, rt;
|
||
|
int result;
|
||
|
|
||
|
rs = 0x11777066;
|
||
|
rt = 0x55AA33FF;
|
||
|
result = 0x02;
|
||
|
__asm
|
||
|
("cmp.le.ph %1, %2\n\t"
|
||
|
"rddsp %0\n\t"
|
||
|
: "=r"(rd)
|
||
|
: "r"(rs), "r"(rt)
|
||
|
);
|
||
|
|
||
|
rd = (rd >> 24) & 0x03;
|
||
|
assert(rd == result);
|
||
|
|
||
|
rs = 0x11777066;
|
||
|
rt = 0x11777066;
|
||
|
result = 0x03;
|
||
|
__asm
|
||
|
("cmp.le.ph %1, %2\n\t"
|
||
|
"rddsp %0\n\t"
|
||
|
: "=r"(rd)
|
||
|
: "r"(rs), "r"(rt)
|
||
|
);
|
||
|
rd = (rd >> 24) & 0x03;
|
||
|
assert(rd == result);
|
||
|
|
||
|
return 0;
|
||
|
}
|