Merge pull request #657 from aarant/master

Linkerscript now tracks RAM/ROM usage
This commit is contained in:
GriffinR
2024-06-22 12:02:35 -04:00
committed by GitHub
4 changed files with 43 additions and 38 deletions
+2
View File
@@ -72,6 +72,8 @@
#define TILE_SIZE_4BPP 32
#define TILE_SIZE_8BPP 64
#define BG_TILE_ADDR_4BPP(n) (void *)(BG_VRAM + (TILE_SIZE_4BPP * (n)))
#define TILE_OFFSET_4BPP(n) ((n) * TILE_SIZE_4BPP)
#define TILE_OFFSET_8BPP(n) ((n) * TILE_SIZE_8BPP)