git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

commit 300b29f5c32427042ecae21d7c6d20e1a21a3825
parent fd77e0e244d46490c71413bf7b8c37e51b411dc8
Author: Toxa <untoxa@mail.ru>
Date:   Sat, 12 Aug 2023 11:49:20 +0300

TOOLCHAIN: change "unbanked" to "nonbanked"

Diffstat:
Mgbdk-support/bankpack/bankpack.c2+-
Mgbdk-support/ihxcheck/ihx_file.c2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gbdk-support/bankpack/bankpack.c b/gbdk-support/bankpack/bankpack.c @@ -165,7 +165,7 @@ int main( int argc, char *argv[] ) { // Require MBC for Game Boy // SMS doesn't require an MBC setting if ((option_get_platform() == PLATFORM_GB) && (option_get_mbc_type() == MBC_TYPE_NONE)) - printf("BankPack: ERROR: auto-banking does not work with unbanked ROMS (no MBC for Game Boy)\n"); + printf("BankPack: ERROR: auto-banking does not work with nonbanked ROMS (no MBC for Game Boy)\n"); else { // Extract areas, sort and assign them to banks // then rewrite object files as needed diff --git a/gbdk-support/ihxcheck/ihx_file.c b/gbdk-support/ihxcheck/ihx_file.c @@ -209,7 +209,7 @@ static int ihx_parse_and_validate_record(char * p_str, ihx_record * p_rec) { return false; } - // For records that start in banks above the unbanked region (0x000 - 0x3FFF) + // For records that start in banks above the nonbanked region (0x000 - 0x3FFF) // Warn (but don't error) if they cross the boundary between different banks if ((p_rec->address & 0xFFFFC000U) != (p_rec->address_end & 0xFFFFC000U)) {

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.