mirror of
https://github.com/pret/pokediamond.git
synced 2026-04-19 03:17:29 -05:00
11 lines
287 B
C
11 lines
287 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
|