mirror of
https://github.com/wiiu-env/wiiu-nanddumper-payload.git
synced 2024-11-16 16:39:18 +01:00
13 lines
170 B
C
13 lines
170 B
C
|
#ifndef IMPORTS_H
|
||
|
#define IMPORTS_H
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdarg.h>
|
||
|
#include "types.h"
|
||
|
|
||
|
#define MCP_SVC_BASE ((void*)0x050567EC)
|
||
|
|
||
|
void usleep(u32 time);
|
||
|
|
||
|
#endif
|