Add -B/--backtrace option to RGBASM and RGBLINK (#1787)

This commit is contained in:
Rangi
2025-08-11 14:30:14 -04:00
committed by GitHub
parent 92a9c73ee7
commit 5f8b7474b4
303 changed files with 2729 additions and 2409 deletions

View File

@@ -1,13 +1,16 @@
warning: for.asm(12): [-Wbackwards-for]
FOR goes backwards from 2 to 1 by 1
error: for.asm(16):
FOR cannot have a step value of 0
warning: for.asm(20): [-Wbackwards-for]
FOR goes backwards from 1 to 2 by -1
error: for.asm(46):
's' already defined as constant at for.asm(39)
(should it be {interpolated} to define its contents "x"?)
error: for.asm(48) -> for.asm::REPT~4(54):
'v' already defined as constant at for.asm(48) -> for.asm::REPT~4(52)
FATAL: for.asm(48) -> for.asm::REPT~4(54):
Failed to update FOR symbol value
warning: FOR goes backwards from 2 to 1 by 1 [-Wbackwards-for]
at for.asm(12)
error: FOR cannot have a step value of 0
at for.asm(16)
warning: FOR goes backwards from 1 to 2 by -1 [-Wbackwards-for]
at for.asm(20)
error: 's' already defined as constant (should it be {interpolated} to define its contents "x"?)
at for.asm(46)
and also:
at for.asm(39)
error: 'v' already defined as constant
at for.asm::REPT~4(54) <- for.asm(48)
and also:
at for.asm::REPT~4(52) <- for.asm(48)
FATAL: Failed to update FOR symbol value
at for.asm::REPT~4(54) <- for.asm(48)