Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/gba_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@
#define IWRAM_CODE __attribute__((section(".iwram"), long_call))
#define EWRAM_CODE __attribute__((section(".ewram"), long_call))

#define IWRAM_DATA __attribute__((section(".iwram")))
#define EWRAM_DATA __attribute__((section(".ewram")))
#define IWRAM_DATA __attribute__((section(".iwram_data")))
#define EWRAM_DATA __attribute__((section(".ewram_data")))
#define EWRAM_BSS __attribute__((section(".sbss")))
#define ALIGN(m) __attribute__((aligned (m)))

Expand Down