mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-06 10:43:24 -05:00
11 lines
286 B
C
11 lines
286 B
C
#ifndef GUARD_SINIT_H
|
|
#define GUARD_SINIT_H
|
|
|
|
static void NitroStaticInit(void);
|
|
#pragma define_section SINIT ".sinit" abs32 RWX
|
|
#pragma section SINIT begin
|
|
SDK_FORCE_EXPORT static void (*NitroStaticInit_[])(void) = { NitroStaticInit };
|
|
#pragma section SINIT end
|
|
|
|
#endif //GUARD_SINIT_H
|