mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-21 02:32:06 +00:00
Remove unused headers, and avoid relying on transitive inclusions `include-what-you-use` has been very useful for this!
73 lines
1.5 KiB
C++
73 lines
1.5 KiB
C++
/* SPDX-License-Identifier: MIT */
|
|
|
|
#include "linkdefs.hpp"
|
|
|
|
using namespace std::literals;
|
|
|
|
// The default values are the most lax, as they are used as-is by RGBASM; only RGBLINK has the full
|
|
// info, so RGBASM's job is only to catch unconditional errors earlier.
|
|
SectionTypeInfo sectionTypeInfo[SECTTYPE_INVALID] = {
|
|
{
|
|
.name = "WRAM0"s,
|
|
.startAddr = 0xC000,
|
|
.size = 0x2000 /* Patched to 0x1000 if !isWRAM0Mode */,
|
|
.firstBank = 0,
|
|
.lastBank = 0,
|
|
},
|
|
{
|
|
.name = "VRAM"s,
|
|
.startAddr = 0x8000,
|
|
.size = 0x2000,
|
|
.firstBank = 0,
|
|
.lastBank = 1 /* Patched to 0 if isDmgMode */,
|
|
},
|
|
{
|
|
.name = "ROMX"s,
|
|
.startAddr = 0x4000,
|
|
.size = 0x4000,
|
|
.firstBank = 1,
|
|
.lastBank = 65535,
|
|
},
|
|
{
|
|
.name = "ROM0"s,
|
|
.startAddr = 0x0000,
|
|
.size = 0x8000 /* Patched to 0x4000 if !is32kMode */,
|
|
.firstBank = 0,
|
|
.lastBank = 0,
|
|
},
|
|
{
|
|
.name = "HRAM"s,
|
|
.startAddr = 0xFF80,
|
|
.size = 0x007F,
|
|
.firstBank = 0,
|
|
.lastBank = 0,
|
|
},
|
|
{
|
|
.name = "WRAMX"s,
|
|
.startAddr = 0xD000,
|
|
.size = 0x1000,
|
|
.firstBank = 1,
|
|
.lastBank = 7,
|
|
},
|
|
{
|
|
.name = "SRAM"s,
|
|
.startAddr = 0xA000,
|
|
.size = 0x2000,
|
|
.firstBank = 0,
|
|
.lastBank = 255,
|
|
},
|
|
{
|
|
.name = "OAM"s,
|
|
.startAddr = 0xFE00,
|
|
.size = 0x00A0,
|
|
.firstBank = 0,
|
|
.lastBank = 0,
|
|
},
|
|
};
|
|
|
|
char const * const sectionModNames[] = {
|
|
"regular", // SECTION_NORMAL
|
|
"union", // SECTION_UNION
|
|
"fragment", // SECTION_FRAGMENT
|
|
};
|