QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
480 B

#include <stdio.h>
int main(void)
{
int a, b;
int result;
b = 0x01;
result = 0x00;
__asm
("l.addi %0, %1, 0xffff\n\t"
: "=r"(a)
: "r"(b)
);
if (a != result) {
printf("addi error\n\t");
return -1;
}
b = 0x010000;
result = 0xffff;
__asm
("l.addi %0, %1, 0xffff\n\t"
: "=r"(a)
: "r"(b)
);
if (a != result) {
printf("addi error\n");
return -1;
}
return 0;
}