mirror of
https://github.com/brain-hackers/lab
synced 2025-02-13 06:00:03 +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;
|
||
|
}
|