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.
 
 
 
 
 
 

8 lines
131 B

static inline uintptr_t __get_tp()
{
uintptr_t tp;
__asm__ ("ori %0, r21, 0" : "=r" (tp) );
return tp;
}
#define MC_PC regs.pc