-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
413 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#ifndef HEADER_SYMBOLS_H | ||
#define HEADER_SYMBOLS_H | ||
|
||
extern Addr main_BSS_END; | ||
extern Addr main_BSS_SIZE; | ||
extern Addr main_BSS_START; | ||
extern Addr main_DATA_END; | ||
extern Addr main_DATA_SIZE; | ||
extern Addr main_DATA_START; | ||
extern Addr main_RODATA_END; | ||
extern Addr main_RODATA_SIZE; | ||
extern Addr main_RODATA_START; | ||
extern Addr main_ROM_END; | ||
extern Addr main_ROM_SIZE; | ||
extern Addr main_ROM_START; | ||
extern Addr main_SBSS_END; | ||
extern Addr main_SBSS_SIZE; | ||
extern Addr main_SBSS_START; | ||
extern Addr main_SDATA_END; | ||
extern Addr main_SDATA_SIZE; | ||
extern Addr main_SDATA_START; | ||
extern Addr main_TEXT_END; | ||
extern Addr main_TEXT_SIZE; | ||
extern Addr main_TEXT_START; | ||
extern Addr main_VRAM; | ||
extern Addr main_VRAM_END; | ||
extern Addr main_VRAM_SIZE; | ||
extern Addr main_alloc_VRAM; | ||
extern Addr main_alloc_VRAM_END; | ||
extern Addr main_alloc_VRAM_SIZE; | ||
extern Addr main_noload_VRAM; | ||
extern Addr main_noload_VRAM_END; | ||
extern Addr main_noload_VRAM_SIZE; | ||
|
||
#endif |
Oops, something went wrong.