selftest mode caller

This commit is contained in:
2021-12-23 17:54:46 +09:00
parent c9c5e95777
commit d194156669
2 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include <libbrain.h>
int main(void *arg)
{
typedef void (*FUNC_POINTER)();
FUNC_POINTER func = (FUNC_POINTER)0x60198000;
func();
return 0;
}