You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vita-toolchain/test/test.c

13 lines
218 B
C

int sceKernelGetThreadId();
extern int SceKernelStackGuard;
volatile int y=17, z;
void _start() {
volatile int x=27,a,b,c,d,e;
x = sceKernelGetThreadId();
y = x + 5;
x -= SceKernelStackGuard + y;
x += z;
}