20 lines
264 B
C
20 lines
264 B
C
|
#include<stdio.h>
|
||
|
#include<assert.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int rd, rt;
|
||
|
int result;
|
||
|
|
||
|
rt = 0x12345678;
|
||
|
result = 0x56785678;
|
||
|
__asm
|
||
|
("replv.ph %0, %1\n\t"
|
||
|
: "=r"(rd)
|
||
|
: "r"(rt)
|
||
|
);
|
||
|
assert(rd == result);
|
||
|
|
||
|
return 0;
|
||
|
}
|