diff --git a/.checkpatch.conf b/.checkpatch.conf index 71f34a2f..4f4ed543 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@ -53,6 +53,9 @@ # Prefer stdint.h types over kernel types --ignore PREFER_KERNEL_TYPES +# Don't ask to replace sscanf by kstrto +--ignore SSCANF_TO_KSTRTO + # Parentheses can make the code clearer --ignore UNNECESSARY_PARENTHESES diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 209967df..64ee0661 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -70,24 +70,29 @@ copyright and the reference to the MIT License. 3. Create a new branch to work on. You could still work on ``develop``, but it's easier that way. -4. Sign off your commits: ``git commit -s`` +4. Compile your changes with ``make develop`` instead of just ``make``. This + target checks for additional warnings. Your patches shouldn't introduce any + new warning (but it may be possible to remove some warning checks if it makes + the code much easier). -5. Follow the Linux kernel coding style, which can be found in the file +5. Sign off your commits: ``git commit -s`` + +6. Follow the Linux kernel coding style, which can be found in the file ``Documentation/process/coding-style.rst`` in the Linux kernel repository. Note that the coding style isn't writen on stone, if there is a good reason to deviate from it, it should be fine. -6. Download the files ``checkpatch.pl``, ``const_structs.checkpatch`` and +7. Download the files ``checkpatch.pl``, ``const_structs.checkpatch`` and ``spelling.txt`` from the folder ``scripts`` in the Linux kernel repository. -7. To use ``checkpatch.pl`` you can use ``make checkpatch``, which will check +8. To use ``checkpatch.pl`` you can use ``make checkpatch``, which will check the coding style of all patches between the current one and the upstream code. By default, the Makefile expects the script (and associate files) to be located in ``../linux/scripts/``, but you can place them anywhere you like as long as you specify it when executing the command: ``CHECKPATCH=../path/to/folder make checkpatch``. -8. Create a pull request against the branch ``develop``. +9. Create a pull request against the branch ``develop``. -9. Be prepared to get some comments about your code and to modify it. Tip: Use - ``git rebase -i origin/develop`` to modify chains of commits. +10. Be prepared to get some comments about your code and to modify it. Tip: Use + ``git rebase -i origin/develop`` to modify chains of commits. diff --git a/Makefile b/Makefile index 49da9f93..58a51b6e 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ PNGLDLIBS := `${PKG_CONFIG} --static --libs-only-l libpng` VERSION_STRING := `git describe --tags --dirty --always 2>/dev/null` -WARNFLAGS := -Wall -Werror +WARNFLAGS := -Wall # Overridable CFLAGS CFLAGS := -g @@ -160,6 +160,7 @@ install: all # Target used to check the coding style of the whole codebase. '.y' and '.l' # files aren't checked, unfortunately... + checkcodebase: $Qfor file in `git ls-files | grep -E '\.c|\.h' | grep -v '\.html'`; do \ ${CHECKPATCH} -f "$$file"; \ @@ -169,6 +170,7 @@ checkcodebase: # to the HEAD. Runs checkpatch once for each commit between the current HEAD and # the first common commit between the HEAD and origin/develop. '.y' and '.l' # files aren't checked, unfortunately... + checkpatch: $Qeval COMMON_COMMIT=$$(git merge-base HEAD origin/develop); \ for commit in `git rev-list $$COMMON_COMMIT..HEAD`; do \ @@ -193,6 +195,20 @@ wwwman: $Qmandoc ${MANDOC} src/link/rgblink.5 > docs/rgblink.5.html $Qmandoc ${MANDOC} src/gfx/rgbgfx.1 > docs/rgbgfx.1.html +# This target is used during development in order to prevent adding new issues +# to the source code. All warnings are treated as errors in order to block the +# compilation and make the continous integration infrastructure return failure. + +develop: + $Qenv make -j WARNFLAGS="-Werror -Wall -Wextra -Wpedantic \ + -Wno-sign-compare -Wchkp -Wformat=2 -Wformat-overflow=2 \ + -Wformat-truncation=1 -Wformat-y2k -Wswitch-enum -Wunused \ + -Wuninitialized -Wunknown-pragmas -Wstrict-overflow=5 \ + -Wstringop-overflow=4 -Walloc-zero -Wduplicated-cond \ + -Wfloat-equal -Wshadow -Wcast-qual -Wcast-align -Wlogical-op \ + -Wnested-externs -Wno-aggressive-loop-optimizations -Winline \ + -Wundef -Wstrict-prototypes -Wold-style-definition" + # Targets for the project maintainer to easily create Windows exes. # This is not for Windows users! # If you're building on Windows with Cygwin or Mingw, just follow the Unix @@ -200,7 +216,7 @@ wwwman: mingw32: $Qenv PKG_CONFIG_PATH=/usr/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig/ \ - make CC=i686-w64-mingw32-gcc YACC=bison WARNFLAGS= -j + make CC=i686-w64-mingw32-gcc YACC=bison -j $Qmv rgbasm rgbasm.exe $Qmv rgblink rgblink.exe $Qmv rgbfix rgbfix.exe @@ -208,7 +224,7 @@ mingw32: mingw64: $Qenv PKG_CONFIG_PATH=/usr/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig/ \ - make CC=x86_64-w64-mingw32-gcc YACC=bison WARNFLAGS= -j + make CC=x86_64-w64-mingw32-gcc YACC=bison -j $Qmv rgbasm rgbasm.exe $Qmv rgblink rgblink.exe $Qmv rgbfix rgbfix.exe diff --git a/include/asm/main.h b/include/asm/main.h index 7eed1df4..49ab7add 100644 --- a/include/asm/main.h +++ b/include/asm/main.h @@ -12,7 +12,7 @@ #include #include -#include "extern/stdnoreturn.h" +#include "helpers.h" struct sOptions { char binary[2]; @@ -46,7 +46,7 @@ void opt_Parse(char *s); * It is also used when the assembler goes into an invalid state (for example, * when it fails to allocate memory). */ -noreturn void fatalerror(const char *fmt, ...); +noreturn_ void fatalerror(const char *fmt, ...); /* * Used for errors that make it impossible to assemble correctly, but don't diff --git a/include/extern/err.h b/include/extern/err.h index aa272a0a..7a6e9e50 100644 --- a/include/extern/err.h +++ b/include/extern/err.h @@ -17,7 +17,7 @@ #include -#include "extern/stdnoreturn.h" +#include "helpers.h" #define warn rgbds_warn #define vwarn rgbds_vwarn @@ -34,10 +34,10 @@ void vwarn(const char *fmt, va_list ap); void warnx(const char *fmt, ...); void vwarnx(const char *fmt, va_list ap); -noreturn void err(int status, const char *fmt, ...); -noreturn void verr(int status, const char *fmt, va_list ap); -noreturn void errx(int status, const char *fmt, ...); -noreturn void verrx(int status, const char *fmt, va_list ap); +noreturn_ void err(int status, const char *fmt, ...); +noreturn_ void verr(int status, const char *fmt, va_list ap); +noreturn_ void errx(int status, const char *fmt, ...); +noreturn_ void verrx(int status, const char *fmt, va_list ap); #endif /* ERR_IN_LIBC */ diff --git a/include/extern/stdnoreturn.h b/include/extern/stdnoreturn.h deleted file mode 100644 index c6df9928..00000000 --- a/include/extern/stdnoreturn.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * This file is part of RGBDS. - * - * Copyright (c) 2014-2018, RGBDS contributors. - * - * SPDX-License-Identifier: MIT - */ - -#ifndef EXTERN_STDNORETURN_H -#define EXTERN_STDNORETURN_H - -#if __STDC_VERSION__ >= 201112L - /* C11 or newer */ - #define noreturn _Noreturn -#elif __cplusplus >= 201103L - /* C++11 or newer */ - #define noreturn [[noreturn]] -#elif __GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ >= 5)) - /* GCC 2.5 or newer */ - #define noreturn __attribute__ ((noreturn)) -#elif _MSC_VER >= 1310 - /* MS Visual Studio 2003/.NET Framework 1.1 or newer */ - #define noreturn _declspec(noreturn) -#else - /* Unsupported, but no need to throw a fit */ - #define noreturn -#endif - -#endif /* EXTERN_STDNORETURN_H */ diff --git a/include/helpers.h b/include/helpers.h new file mode 100644 index 00000000..3bf43aa0 --- /dev/null +++ b/include/helpers.h @@ -0,0 +1,22 @@ +/* + * This file is part of RGBDS. + * + * Copyright (c) 2014-2018, RGBDS contributors. + * + * SPDX-License-Identifier: MIT + */ + +#ifndef HELPERS_H +#define HELPERS_H + +#ifdef __GNUC__ + /* GCC or compatible */ + #define noreturn_ __attribute__ ((noreturn)) + #define unused_ __attribute__ ((unused)) +#else + /* Unsupported, but no need to throw a fit */ + #define noreturn_ + #define unused_ +#endif + +#endif /* HELPERS_H */ diff --git a/include/link/script.h b/include/link/script.h index 8796d3c8..7a8663e0 100644 --- a/include/link/script.h +++ b/include/link/script.h @@ -11,9 +11,9 @@ #include -#include "extern/stdnoreturn.h" +#include "helpers.h" -noreturn void script_fatalerror(const char *fmt, ...); +noreturn_ void script_fatalerror(const char *fmt, ...); void script_Parse(const char *path); diff --git a/src/asm/asmy.y b/src/asm/asmy.y index ea964260..93d3f0f4 100644 --- a/src/asm/asmy.y +++ b/src/asm/asmy.y @@ -341,8 +341,9 @@ static void if_skip_to_else(void) break; case '\"': - src++; + src += 2; inString = false; + break; default: src++; diff --git a/src/asm/fstack.c b/src/asm/fstack.c index 6b7141e9..ead50395 100644 --- a/src/asm/fstack.c +++ b/src/asm/fstack.c @@ -87,6 +87,8 @@ static void pushcontext(void) (*ppFileStack)->nREPTBlockSize = nCurrentREPTBlockSize; (*ppFileStack)->nREPTBlockCount = nCurrentREPTBlockCount; break; + default: + fatalerror("%s: Internal error.", __func__); } nLineNo = 0; @@ -152,6 +154,8 @@ static int32_t popcontext(void) nCurrentREPTBlockSize = pLastFile->nREPTBlockSize; nCurrentREPTBlockCount = pLastFile->nREPTBlockCount; break; + default: + fatalerror("%s: Internal error.", __func__); } free(*ppLastFile); @@ -174,6 +178,8 @@ int32_t fstk_GetLine(void) return nLineNo; /* ??? */ case STAT_isREPTBlock: break; /* Peek top file of the stack */ + default: + fatalerror("%s: Internal error.", __func__); } pLastFile = pFileStack; @@ -257,8 +263,10 @@ FILE *fstk_FindFile(char *fname) * space had been available. Thus, a return value of `size` or * more means that the output was truncated. */ - if (snprintf(path, sizeof(path), "%s%s", IncludePaths[i], fname) - >= sizeof(path)) + int fullpathlen = snprintf(path, sizeof(path), "%s%s", + IncludePaths[i], fname); + + if (fullpathlen >= (int)sizeof(path)) continue; f = fopen(path, "rb"); diff --git a/src/asm/globlex.c b/src/asm/globlex.c index 79a8583d..d03d5b23 100644 --- a/src/asm/globlex.c +++ b/src/asm/globlex.c @@ -20,6 +20,8 @@ #include "asm/symbol.h" #include "asm/symbol.h" +#include "helpers.h" + #include "asmy.h" bool oDontExpandStrings; @@ -93,6 +95,9 @@ static int32_t ascii2bin(char *s) s += 1; convertfunc = binary2bin; break; + default: + /* Handle below */ + break; } if (radix == 4) { @@ -216,7 +221,7 @@ uint32_t PutMacroArg(char *src, uint32_t size) return 0; } -uint32_t PutUniqueArg(char *src, uint32_t size) +uint32_t PutUniqueArg(unused_ char *src, uint32_t size) { char *s; diff --git a/src/asm/lexer.c b/src/asm/lexer.c index 8696b140..20b6690a 100644 --- a/src/asm/lexer.c +++ b/src/asm/lexer.c @@ -414,7 +414,7 @@ void yylex_GetFloatMaskAndFloatLen(uint32_t *pnFloatMask, uint32_t *pnFloatLen) /* * Gets the longest keyword/operator from the current position in the buffer. */ -struct sLexString *yylex_GetLongestFixed() +struct sLexString *yylex_GetLongestFixed(void) { struct sLexString *pLongestFixed = NULL; char *s = pLexBuffer; @@ -640,7 +640,6 @@ scanagain: /* Check for line continuation character */ if (*pLexBuffer == '\\') { - /* * Look for line continuation character after a series of * spaces. This is also useful for files that use Windows line @@ -851,7 +850,7 @@ uint32_t yylex(void) return yylex_NORMAL(); case LEX_STATE_MACROARGS: return yylex_MACROARGS(); + default: + fatalerror("%s: Internal error.", __func__); } - - fatalerror("Internal error in %s", __func__); } diff --git a/src/asm/main.c b/src/asm/main.c index 28659e53..4be82181 100644 --- a/src/asm/main.c +++ b/src/asm/main.c @@ -6,6 +6,7 @@ * SPDX-License-Identifier: MIT */ +#include #include #include #include @@ -147,10 +148,13 @@ void opt_Parse(char *s) case 'z': if (strlen(&s[1]) <= 2) { int32_t result; + unsigned int fillchar; - result = sscanf(&s[1], "%x", &newopt.fillchar); + result = sscanf(&s[1], "%x", &fillchar); if (!((result == EOF) || (result == 1))) errx(1, "Invalid argument for option 'z'"); + + newopt.fillchar = fillchar; } else { errx(1, "Invalid argument for option 'z'"); } @@ -222,7 +226,7 @@ void opt_AddDefine(char *s) static void opt_ParseDefines(void) { - int32_t i; + uint32_t i; for (i = 0; i < cldefines_index; i += 2) sym_AddString(cldefines[i], cldefines[i + 1]); @@ -480,7 +484,7 @@ int main(int argc, char *argv[]) if (CurrentOptions.verbose) { printf("Success! %u lines in %d.%02d seconds ", nTotalLines, (int)timespent, ((int)(timespent * 100.0)) % 100); - if (timespent == 0) + if (timespent < FLT_MIN_EXP) printf("(INFINITY lines/minute)\n"); else printf("(%d lines/minute)\n", diff --git a/src/asm/symbol.c b/src/asm/symbol.c index c673e10c..4f9f0c22 100644 --- a/src/asm/symbol.c +++ b/src/asm/symbol.c @@ -25,6 +25,7 @@ #include "extern/err.h" +#include "helpers.h" #include "version.h" struct sSymbol *tHashedSymbols[HASHSIZE]; @@ -62,7 +63,7 @@ void helper_RemoveLeadingZeros(char *string) memmove(string, new_beginning, strlen(new_beginning) + 1); } -int32_t Callback_NARG(struct sSymbol *sym) +int32_t Callback_NARG(unused_ struct sSymbol *sym) { uint32_t i = 0; @@ -72,7 +73,7 @@ int32_t Callback_NARG(struct sSymbol *sym) return i; } -int32_t Callback__LINE__(struct sSymbol __attribute__((unused)) *sym) +int32_t Callback__LINE__(unused_ struct sSymbol *sym) { return nLineNo; } @@ -673,7 +674,7 @@ void sym_AddReloc(char *tzSym) struct sSymbol *parent = pScope->pScope ? pScope->pScope : pScope; - int32_t parentLen = localPtr - tzSym; + uint32_t parentLen = localPtr - tzSym; if (strchr(localPtr + 1, '.') != NULL) { fatalerror("'%s' is a nonsensical reference to a nested local symbol", diff --git a/src/extern/err.c b/src/extern/err.c index bcdde402..f1625132 100644 --- a/src/extern/err.c +++ b/src/extern/err.c @@ -33,7 +33,7 @@ void rgbds_vwarnx(const char *fmt, va_list ap) putc('\n', stderr); } -noreturn void rgbds_verr(int status, const char *fmt, va_list ap) +noreturn_ void rgbds_verr(int status, const char *fmt, va_list ap) { fprintf(stderr, "error"); if (fmt) { @@ -44,7 +44,7 @@ noreturn void rgbds_verr(int status, const char *fmt, va_list ap) exit(status); } -noreturn void rgbds_verrx(int status, const char *fmt, va_list ap) +noreturn_ void rgbds_verrx(int status, const char *fmt, va_list ap) { fprintf(stderr, "error"); if (fmt) { @@ -73,7 +73,7 @@ void rgbds_warnx(const char *fmt, ...) va_end(ap); } -noreturn void rgbds_err(int status, const char *fmt, ...) +noreturn_ void rgbds_err(int status, const char *fmt, ...) { va_list ap; @@ -82,7 +82,7 @@ noreturn void rgbds_err(int status, const char *fmt, ...) va_end(ap); } -noreturn void rgbds_errx(int status, const char *fmt, ...) +noreturn_ void rgbds_errx(int status, const char *fmt, ...) { va_list ap; diff --git a/src/gfx/main.c b/src/gfx/main.c index 6171676d..b58e39f8 100644 --- a/src/gfx/main.c +++ b/src/gfx/main.c @@ -53,6 +53,7 @@ int main(int argc, char *argv[]) break; case 'F': opts.hardfix = true; + /* fallthrough */ case 'f': opts.fix = true; break; diff --git a/src/gfx/makepng.c b/src/gfx/makepng.c index 3f8fc24a..38f54d4c 100644 --- a/src/gfx/makepng.c +++ b/src/gfx/makepng.c @@ -317,9 +317,9 @@ static void rgba_png_palette(struct PNGImage *img, png_color **palette_ptr_ptr, int *num_colors) { if (png_get_valid(img->png, img->info, PNG_INFO_PLTE)) - return rgba_PLTE_palette(img, palette_ptr_ptr, num_colors); + rgba_PLTE_palette(img, palette_ptr_ptr, num_colors); else - return rgba_build_palette(img, palette_ptr_ptr, num_colors); + rgba_build_palette(img, palette_ptr_ptr, num_colors); } static void rgba_PLTE_palette(struct PNGImage *img, @@ -469,8 +469,10 @@ struct ColorWithLuminance { static int compare_luminance(const void *a, const void *b) { - struct ColorWithLuminance *x = (struct ColorWithLuminance *)a; - struct ColorWithLuminance *y = (struct ColorWithLuminance *)b; + const struct ColorWithLuminance *x, *y; + + x = (const struct ColorWithLuminance *)a; + y = (const struct ColorWithLuminance *)b; return y->luminance - x->luminance; } diff --git a/src/link/assign.c b/src/link/assign.c index fca668cd..e2c4b1ee 100644 --- a/src/link/assign.c +++ b/src/link/assign.c @@ -74,6 +74,10 @@ static void do_max_bank(enum eSectionType Type, int32_t nBank) if (nBank > MaxVBankUsed) MaxVBankUsed = nBank; break; + case SECT_ROM0: + case SECT_WRAM0: + case SECT_OAM: + case SECT_HRAM: default: break; } @@ -494,7 +498,6 @@ void SetLinkerscriptName(char *tzLinkerscriptFile) void AssignSections(void) { - int32_t i; struct sSection *pSection; MaxBankUsed = 0; @@ -503,7 +506,7 @@ void AssignSections(void) * Initialize the memory areas */ - for (i = 0; i < BANK_INDEX_MAX; i += 1) { + for (int32_t i = 0; i < BANK_INDEX_MAX; i += 1) { BankFree[i] = malloc(sizeof(*BankFree[i])); if (!BankFree[i]) { @@ -617,6 +620,9 @@ void AssignSections(void) pSection->nOrg, pSection->nBank); } break; + default: + errx(1, "%s: Internal error: Type %d", __func__, + pSection->Type); } } @@ -660,6 +666,10 @@ void AssignSections(void) do_max_bank(pSection->Type, pSection->nBank); break; + case SECT_ROM0: + case SECT_WRAM0: + case SECT_OAM: + case SECT_HRAM: default: /* Handle other sections later */ break; } diff --git a/src/link/lexer.l b/src/link/lexer.l index 156ddf0c..e0f65dc1 100644 --- a/src/link/lexer.l +++ b/src/link/lexer.l @@ -23,7 +23,7 @@ #include "types.h" -extern int yyparse(); +extern int yyparse(void); /* File include stack. */ @@ -179,7 +179,7 @@ void script_PrintFileStack(void) fprintf(stderr, "%s(%d)", linkerscript_path, include_line[i]); } -noreturn void script_fatalerror(const char *fmt, ...) +noreturn_ void script_fatalerror(const char *fmt, ...) { va_list args; va_start(args, fmt); diff --git a/src/link/parser.y b/src/link/parser.y index a532f560..8e6a2094 100644 --- a/src/link/parser.y +++ b/src/link/parser.y @@ -14,7 +14,7 @@ #include "link/script.h" -int yylex(); +int yylex(void); void yyerror(char *); extern int yylineno; @@ -107,8 +107,8 @@ statement: %% -extern int yylex(); -extern int yyparse(); +extern int yylex(void); +extern int yyparse(void); int yywrap(void) { diff --git a/src/link/patch.c b/src/link/patch.c index 9d704264..f3d036bf 100644 --- a/src/link/patch.c +++ b/src/link/patch.c @@ -325,6 +325,8 @@ void Patch(void) pPatch->nLineNo); } break; + default: + errx(1, "%s: Internal error.", __func__); } pPatch = pPatch->pNext; diff --git a/src/link/script.c b/src/link/script.c index 55e6c193..913b69ad 100644 --- a/src/link/script.c +++ b/src/link/script.c @@ -85,59 +85,59 @@ void script_InitSections(void) } } -void script_SetCurrentSectionType(const char *type, uint32_t bank) +void script_SetCurrentSectionType(const char *type, uint32_t bank_num) { if (strcmp(type, "ROM0") == 0) { - if (bank != 0) + if (bank_num != 0) errx(1, "Trying to assign a bank number to ROM0.\n"); current_bank = BANK_INDEX_ROM0; current_real_bank = 0; return; } else if (strcmp(type, "ROMX") == 0) { - if (bank == 0) + if (bank_num == 0) errx(1, "ROMX index can't be 0.\n"); - if (bank > BANK_COUNT_ROMX) { - errx(1, "ROMX index too big (%d > %d).\n", bank, + if (bank_num > BANK_COUNT_ROMX) { + errx(1, "ROMX index too big (%d > %d).\n", bank_num, BANK_COUNT_ROMX); } - current_bank = BANK_INDEX_ROMX + bank - 1; - current_real_bank = bank; + current_bank = BANK_INDEX_ROMX + bank_num - 1; + current_real_bank = bank_num; return; } else if (strcmp(type, "VRAM") == 0) { - if (bank >= BANK_COUNT_VRAM) { - errx(1, "VRAM index too big (%d >= %d).\n", bank, + if (bank_num >= BANK_COUNT_VRAM) { + errx(1, "VRAM index too big (%d >= %d).\n", bank_num, BANK_COUNT_VRAM); } - current_bank = BANK_INDEX_VRAM + bank; - current_real_bank = bank; + current_bank = BANK_INDEX_VRAM + bank_num; + current_real_bank = bank_num; return; } else if (strcmp(type, "WRAM0") == 0) { - if (bank != 0) + if (bank_num != 0) errx(1, "Trying to assign a bank number to WRAM0.\n"); current_bank = BANK_INDEX_WRAM0; current_real_bank = 0; return; } else if (strcmp(type, "WRAMX") == 0) { - if (bank == 0) + if (bank_num == 0) errx(1, "WRAMX index can't be 0.\n"); - if (bank > BANK_COUNT_WRAMX) { - errx(1, "WRAMX index too big (%d > %d).\n", bank, + if (bank_num > BANK_COUNT_WRAMX) { + errx(1, "WRAMX index too big (%d > %d).\n", bank_num, BANK_COUNT_WRAMX); } - current_bank = BANK_INDEX_WRAMX + bank - 1; - current_real_bank = bank; + current_bank = BANK_INDEX_WRAMX + bank_num - 1; + current_real_bank = bank_num; return; } else if (strcmp(type, "SRAM") == 0) { - if (bank >= BANK_COUNT_SRAM) { - errx(1, "SRAM index too big (%d >= %d).\n", bank, + if (bank_num >= BANK_COUNT_SRAM) { + errx(1, "SRAM index too big (%d >= %d).\n", bank_num, BANK_COUNT_SRAM); } - current_bank = BANK_INDEX_SRAM + bank; - current_real_bank = bank; + current_bank = BANK_INDEX_SRAM + bank_num; + current_real_bank = bank_num; return; } else if (strcmp(type, "OAM") == 0) { - if (bank != 0) { + if (bank_num != 0) { errx(1, "%s: Trying to assign a bank number to OAM.\n", __func__); } @@ -145,7 +145,7 @@ void script_SetCurrentSectionType(const char *type, uint32_t bank) current_real_bank = 0; return; } else if (strcmp(type, "HRAM") == 0) { - if (bank != 0) { + if (bank_num != 0) { errx(1, "%s: Trying to assign a bank number to HRAM.\n", __func__); }