Rename OPT_SMALL to OPT_TINY

This way it is easier to identify the flag passed to the binary (-t).

Signed-off-by: AntonioND <antonio_nd@outlook.com>
This commit is contained in:
AntonioND
2017-04-02 21:39:40 +01:00
parent e16af28676
commit e9ed81074b
5 changed files with 8 additions and 8 deletions

View File

@@ -35,7 +35,7 @@ void script_InitSections(void)
if (i == BANK_ROM0) {
/* ROM0 bank */
bank[i].address = 0x0000;
if (options & OPT_SMALL) {
if (options & OPT_TINY) {
bank[i].top_address = 0x8000;
} else {
bank[i].top_address = 0x4000;
@@ -48,7 +48,7 @@ void script_InitSections(void)
* Now, this shouldn't really be necessary... but for
* good measure we'll do it anyway.
*/
if (options & OPT_SMALL) {
if (options & OPT_TINY) {
bank[i].top_address = 0x4000;
} else {
bank[i].top_address = 0x8000;