Separate crt0, rom_header, and rom_header_gf

This commit is contained in:
GriffinR
2022-06-21 20:10:07 -04:00
parent 0ef7307040
commit 2eb1c9664e
9 changed files with 253 additions and 150 deletions
+2
View File
@@ -52,4 +52,6 @@ struct Decoration
const u16 *tiles;
};
extern const struct Decoration gDecorations[];
#endif //GUARD_DECORATION_H
+1
View File
@@ -29,6 +29,7 @@ struct BagPocket
u8 capacity;
};
extern const struct Item gItems[];
extern struct BagPocket gBagPockets[];
void GetBerryCountString(u8* dst, const u8* berryName, u32 quantity);
+2
View File
@@ -20,6 +20,8 @@ enum
POKEBALL_COUNT
};
extern const struct CompressedSpriteSheet gBallSpriteSheets[POKEBALL_COUNT];
extern const struct CompressedSpritePalette gBallSpritePalettes[POKEBALL_COUNT];
extern const struct SpriteTemplate gBallSpriteTemplates[];
#define POKEBALL_PLAYER_SENDOUT 0xFF
+2
View File
@@ -3,6 +3,8 @@
#include "global.h"
extern const u8 *const gMonIconTable[];
extern const struct SpritePalette gMonIconPaletteTable[];
extern const u16 gMonIconPalettes[][16];
extern const u8 gMonIconPaletteIndices[];