lab/x1/selftester/selftester.c

10 lines
159 B
C
Raw Normal View History

2021-12-23 17:54:46 +09:00
#include <libbrain.h>
int main(void *arg)
{
typedef void (*FUNC_POINTER)();
FUNC_POINTER func = (FUNC_POINTER)0x60198000;
func();
return 0;
}