diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-04-07 22:49:37 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-04-07 22:49:37 -0400 |
commit | 83bb25e7af1837d41177d84f1b03d83b42b9478c (patch) | |
tree | 291c3d1502ba75445aad0aa95b9fc68f88b7bf97 /include | |
parent | 978bdaaa050420289374ddc23aa0017df06e4000 (diff) |
through DebugMenu_807786C; use macro NAKED instead of __attribute__((naked))
Diffstat (limited to 'include')
-rw-r--r-- | include/gba/defines.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/gba/defines.h b/include/gba/defines.h index 7fd429d9e..26e0c873f 100644 --- a/include/gba/defines.h +++ b/include/gba/defines.h @@ -8,6 +8,8 @@ #define IWRAM_DATA __attribute__((section("iwram_data"))) #define EWRAM_DATA __attribute__((section("ewram_data"))) +#define UNUSED __attribute__((unused)) +#define NAKED __attribute__((naked)) #define ALIGNED(n) __attribute__((aligned(n))) |