mirror of
https://github.com/brain-hackers/lab
synced 2024-11-15 06:38:01 +09:00
10 lines
159 B
C
10 lines
159 B
C
#include <libbrain.h>
|
|
|
|
int main(void *arg)
|
|
{
|
|
typedef void (*FUNC_POINTER)();
|
|
FUNC_POINTER func = (FUNC_POINTER)0x60198000;
|
|
func();
|
|
return 0;
|
|
}
|