Make quote marks consistent in error/warning messages (#1791)

- "Double quotes" for strings (filenames, section names, CLI option arguments, etc)
- 'Single quotes' for characters and CLI option flags
- `Backticks` for keywords and identifiers (symbol names, charmap names, etc)

CLI option flags also have their leading dashes
This commit is contained in:
Rangi
2025-08-12 15:24:21 -04:00
committed by GitHub
parent 7df9c12a6c
commit 7b405513d9
185 changed files with 889 additions and 877 deletions

View File

@@ -1,3 +1,3 @@
error: Cannot output data outside of a SECTION
error: Cannot output data outside of a `SECTION`
at align-pc-outside-section.asm(1)
Assembly aborted with 1 error!

View File

@@ -1,4 +1,4 @@
error: Label "!0" created outside of a SECTION
error: Label `!0` created outside of a `SECTION`
at anon-label-bad.asm(2)
error: Reference to anonymous label 2 before, when only 1 has been created so far
at anon-label-bad.asm(6)

View File

@@ -4,7 +4,7 @@ error: Assertion failed: @ ain't 0 now? (Hint: it's $1)
at assert.asm(7)
warning: Assertion failed [-Wassert]
at assert.asm(10)
error: Expected constant expression: 'FloatingBase' is not constant at assembly time
error: Expected constant expression: `FloatingBase` is not constant at assembly time
at assert.asm(18)
error: Assertion failed
at assert.asm(18)

View File

@@ -1,23 +1,23 @@
error: Expected constant expression: Section "ROMX_ok1"'s bank is not known
at bank.asm::def_sect(8) <- bank.asm(13)
error: Expected constant expression: "Label_u3"'s bank is not known
error: Expected constant expression: `Label_u3`'s bank is not known
at bank.asm::def_sect(8) <- bank.asm(13)
error: Expected constant expression: Section "ROMX_bad"'s bank is not known
at bank.asm::def_sect(8) <- bank.asm(15)
error: Expected constant expression: "Label_u5"'s bank is not known
error: Expected constant expression: `Label_u5`'s bank is not known
at bank.asm::def_sect(8) <- bank.asm(15)
error: Expected constant expression: Section "VRAM_bad"'s bank is not known
at bank.asm::def_sect(8) <- bank.asm(17)
error: Expected constant expression: "Label_u7"'s bank is not known
error: Expected constant expression: `Label_u7`'s bank is not known
at bank.asm::def_sect(8) <- bank.asm(17)
error: Expected constant expression: Section "SRAM_bad"'s bank is not known
at bank.asm::def_sect(8) <- bank.asm(19)
error: Expected constant expression: "Label_u9"'s bank is not known
error: Expected constant expression: `Label_u9`'s bank is not known
at bank.asm::def_sect(8) <- bank.asm(19)
error: Expected constant expression: Section "WRAMX_bad"'s bank is not known
at bank.asm::def_sect(8) <- bank.asm(22)
error: Expected constant expression: "Label_u12"'s bank is not known
error: Expected constant expression: `Label_u12`'s bank is not known
at bank.asm::def_sect(8) <- bank.asm(22)
error: BANK argument must be a label
error: `BANK` argument must be a label
at bank.asm(26)
Assembly aborted with 11 errors!

View File

@@ -1,2 +1,2 @@
warning: /* in block comment [-Wnested-comment]
warning: "/*" in block comment [-Wnested-comment]
at block-comment-contents-error.asm(1)

View File

@@ -14,10 +14,10 @@ error: syntax error, unexpected number
at blue-paint.asm::endless(24) <- blue-paint.asm(26)
FATAL: Recursion limit (5) exceeded
at blue-paint.asm(30)
while expanding symbol "infinite"
while expanding symbol "infinite"
while expanding symbol "infinite"
while expanding symbol "infinite"
while expanding symbol "infinite"
while expanding symbol "infinite"
while expanding symbol "infinite"
while expanding symbol `infinite`
while expanding symbol `infinite`
while expanding symbol `infinite`
while expanding symbol `infinite`
while expanding symbol `infinite`
while expanding symbol `infinite`
while expanding symbol `infinite`

View File

@@ -1,13 +1,13 @@
error: Bracketed symbol "nonnumeric" is not numeric
error: Bracketed symbol `nonnumeric` is not numeric
at bracketed-macro-args.asm::bad(26) <- bracketed-macro-args.asm(33)
error: Invalid bracketed macro argument '\<0>'
error: Invalid bracketed macro argument "\<0>"
at bracketed-macro-args.asm::bad(27) <- bracketed-macro-args.asm(33)
error: Bracketed symbol "undefined" does not exist
error: Bracketed symbol `undefined` does not exist
at bracketed-macro-args.asm::bad(28) <- bracketed-macro-args.asm(33)
error: Macro argument '\<2>' not defined
error: Macro argument `\<2>` not defined
at bracketed-macro-args.asm::bad(29) <- bracketed-macro-args.asm(33)
error: Macro argument '\<2>' not defined
error: Macro argument `\<2>` not defined
at bracketed-macro-args.asm::bad(30) <- bracketed-macro-args.asm(33)
error: Bracketed symbol "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz" does not exist
error: Bracketed symbol `abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz` does not exist
at bracketed-macro-args.asm::toolong(36) <- bracketed-macro-args.asm(39)
Assembly aborted with 6 errors!

View File

@@ -1,6 +1,6 @@
error: Formatting string as type 'X'
at bracketed-symbols.asm(16)
error: "Label" does not have a constant value
error: `Label` does not have a constant value
at bracketed-symbols.asm(20)
error: PC does not have a constant value; the current section is not fixed
at bracketed-symbols.asm(21)

View File

@@ -2,7 +2,7 @@ warning: done 5 [-Wuser]
at break.asm(9)
warning: OK [-Wuser]
at break.asm(28)
error: BREAK can only be used inside a REPT/FOR block
error: `BREAK` can only be used inside a loop (`REPT`/`FOR` block)
at break.asm(29)
FATAL: Ended block with 1 unterminated IF construct
FATAL: Ended block with 1 unterminated conditional (`IF`/`ELIF`/`ELSE` block)
at break.asm::REPT~1(34) <- break.asm(30)

View File

@@ -1,57 +1,57 @@
error: Built-in symbol '__UTC_YEAR__' cannot be purged
error: Built-in symbol `__UTC_YEAR__` cannot be purged
at builtin-overwrite.asm::tickle(5) <- builtin-overwrite.asm(36)
error: Built-in symbol '__UTC_YEAR__' cannot be purged
error: Built-in symbol `__UTC_YEAR__` cannot be purged
at builtin-overwrite.asm::tickle(6) <- builtin-overwrite.asm(36)
error: '__UTC_YEAR__' already defined as built-in
error: `__UTC_YEAR__` already defined as built-in
at builtin-overwrite.asm::tickle(9) <- builtin-overwrite.asm(36)
error: '__UTC_YEAR__' already defined as built-in
error: `__UTC_YEAR__` already defined as built-in
at builtin-overwrite.asm::tickle(10) <- builtin-overwrite.asm(36)
error: '__UTC_YEAR__' already defined as built-in constant
error: `__UTC_YEAR__` already defined as built-in constant
at builtin-overwrite.asm::tickle(13) <- builtin-overwrite.asm(36)
error: '__UTC_YEAR__' already defined as built-in constant
error: `__UTC_YEAR__` already defined as built-in constant
at builtin-overwrite.asm::tickle(14) <- builtin-overwrite.asm(36)
error: '__UTC_YEAR__' already defined as built-in
error: `__UTC_YEAR__` already defined as built-in
at builtin-overwrite.asm::tickle(17) <- builtin-overwrite.asm(36)
error: '__UTC_YEAR__' already defined as built-in
error: `__UTC_YEAR__` already defined as built-in
at builtin-overwrite.asm::tickle(18) <- builtin-overwrite.asm(36)
error: '__UTC_YEAR__' already defined as built-in constant
error: `__UTC_YEAR__` already defined as built-in constant
at builtin-overwrite.asm::tickle(21) <- builtin-overwrite.asm(36)
error: '__UTC_YEAR__' already defined as built-in constant
error: `__UTC_YEAR__` already defined as built-in constant
at builtin-overwrite.asm::tickle(22) <- builtin-overwrite.asm(36)
error: Built-in symbol '__UTC_YEAR__' cannot be redefined
error: Built-in symbol `__UTC_YEAR__` cannot be redefined
at builtin-overwrite.asm::tickle(25) <- builtin-overwrite.asm(36)
error: Built-in symbol '__UTC_YEAR__' cannot be redefined
error: Built-in symbol `__UTC_YEAR__` cannot be redefined
at builtin-overwrite.asm::tickle(26) <- builtin-overwrite.asm(36)
error: '__UTC_YEAR__' already defined as built-in non-EQUS
error: `__UTC_YEAR__` already defined as built-in non-`EQUS`
at builtin-overwrite.asm::tickle(29) <- builtin-overwrite.asm(36)
error: '__UTC_YEAR__' already defined as built-in non-EQUS
error: `__UTC_YEAR__` already defined as built-in non-`EQUS`
at builtin-overwrite.asm::tickle(30) <- builtin-overwrite.asm(36)
error: Built-in symbol '__ISO_8601_UTC__' cannot be purged
error: Built-in symbol `__ISO_8601_UTC__` cannot be purged
at builtin-overwrite.asm::tickle(5) <- builtin-overwrite.asm(37)
error: Built-in symbol '__ISO_8601_UTC__' cannot be purged
error: Built-in symbol `__ISO_8601_UTC__` cannot be purged
at builtin-overwrite.asm::tickle(6) <- builtin-overwrite.asm(37)
error: '__ISO_8601_UTC__' already defined as built-in
error: `__ISO_8601_UTC__` already defined as built-in
at builtin-overwrite.asm::tickle(9) <- builtin-overwrite.asm(37)
error: '__ISO_8601_UTC__' already defined as built-in
error: `__ISO_8601_UTC__` already defined as built-in
at builtin-overwrite.asm::tickle(10) <- builtin-overwrite.asm(37)
error: '__ISO_8601_UTC__' already defined as built-in constant
error: `__ISO_8601_UTC__` already defined as built-in constant
at builtin-overwrite.asm::tickle(13) <- builtin-overwrite.asm(37)
error: '__ISO_8601_UTC__' already defined as built-in constant
error: `__ISO_8601_UTC__` already defined as built-in constant
at builtin-overwrite.asm::tickle(14) <- builtin-overwrite.asm(37)
error: '__ISO_8601_UTC__' already defined as built-in
error: `__ISO_8601_UTC__` already defined as built-in
at builtin-overwrite.asm::tickle(17) <- builtin-overwrite.asm(37)
error: '__ISO_8601_UTC__' already defined as built-in
error: `__ISO_8601_UTC__` already defined as built-in
at builtin-overwrite.asm::tickle(18) <- builtin-overwrite.asm(37)
error: '__ISO_8601_UTC__' already defined as built-in constant
error: `__ISO_8601_UTC__` already defined as built-in constant
at builtin-overwrite.asm::tickle(21) <- builtin-overwrite.asm(37)
error: '__ISO_8601_UTC__' already defined as built-in constant
error: `__ISO_8601_UTC__` already defined as built-in constant
at builtin-overwrite.asm::tickle(22) <- builtin-overwrite.asm(37)
error: '__ISO_8601_UTC__' already defined as built-in non-EQU
error: `__ISO_8601_UTC__` already defined as built-in non-`EQU`
at builtin-overwrite.asm::tickle(25) <- builtin-overwrite.asm(37)
error: '__ISO_8601_UTC__' already defined as built-in non-EQU
error: `__ISO_8601_UTC__` already defined as built-in non-`EQU`
at builtin-overwrite.asm::tickle(26) <- builtin-overwrite.asm(37)
error: Built-in symbol '__ISO_8601_UTC__' cannot be redefined
error: Built-in symbol `__ISO_8601_UTC__` cannot be redefined
at builtin-overwrite.asm::tickle(29) <- builtin-overwrite.asm(37)
error: Built-in symbol '__ISO_8601_UTC__' cannot be redefined
error: Built-in symbol `__ISO_8601_UTC__` cannot be redefined
at builtin-overwrite.asm::tickle(30) <- builtin-overwrite.asm(37)
Assembly aborted with 28 errors!

View File

@@ -1,33 +1,33 @@
error: Undefined symbol '_NARG'
error: Undefined symbol `_NARG`
at builtin-reserved.asm(3)
error: '_NARG' is reserved for a built-in symbol
error: `_NARG` is reserved for a built-in symbol
at builtin-reserved.asm(5)
error: '_NARG' is reserved for a built-in symbol
error: `_NARG` is reserved for a built-in symbol
at builtin-reserved.asm(6)
error: '_NARG' is reserved for a built-in constant symbol
error: `_NARG` is reserved for a built-in constant symbol
at builtin-reserved.asm(8)
error: '_NARG' is reserved for a built-in constant symbol
error: `_NARG` is reserved for a built-in constant symbol
at builtin-reserved.asm(9)
error: '_NARG' is reserved for a built-in symbol
error: `_NARG` is reserved for a built-in symbol
at builtin-reserved.asm(11)
error: '_NARG' is reserved for a built-in non-EQUS symbol
error: `_NARG` is reserved for a built-in non-`EQUS` symbol
at builtin-reserved.asm(12)
error: '_NARG' is reserved for a built-in symbol
error: `_NARG` is reserved for a built-in symbol
at builtin-reserved.asm(15)
error: Undefined symbol '.'
error: Undefined symbol `.`
at builtin-reserved.asm(20)
error: '.' is reserved for a built-in symbol
error: `.` is reserved for a built-in symbol
at builtin-reserved.asm(22)
error: '.' is reserved for a built-in non-EQU symbol
error: `.` is reserved for a built-in non-`EQU` symbol
at builtin-reserved.asm(23)
error: '.' is reserved for a built-in constant symbol
error: `.` is reserved for a built-in constant symbol
at builtin-reserved.asm(25)
error: '.' is reserved for a built-in constant symbol
error: `.` is reserved for a built-in constant symbol
at builtin-reserved.asm(26)
error: '.' is reserved for a built-in symbol
error: `.` is reserved for a built-in symbol
at builtin-reserved.asm(28)
error: '.' is reserved for a built-in symbol
error: `.` is reserved for a built-in symbol
at builtin-reserved.asm(29)
error: "." has no value outside of a label scope
error: `.` has no value outside of a label scope
at builtin-reserved.asm(32)
Assembly aborted with 16 errors!

View File

@@ -1,4 +1,4 @@
error: Illegal character escape at end of input
error: Illegal character escape '\' at end of input
at character-escape-at-end.asm(1)
error: Unterminated string
at character-escape-at-end.asm(1)

View File

@@ -1,3 +1,3 @@
error: Base charmap 'eggs' doesn't exist
error: Undefined base charmap `eggs`
at charmap-inheritance.asm(26)
Assembly aborted with 1 error!

View File

@@ -1,6 +1,6 @@
error: syntax error, unexpected PRINTLN, expecting end of line or end of buffer or end of fragment literal
at code-after-endm-endr-endc.asm(6)
error: Undefined macro "mac"
error: Undefined macro `mac`
at code-after-endm-endr-endc.asm(7)
error: syntax error, unexpected PRINTLN, expecting end of line or end of buffer or end of fragment literal
at code-after-endm-endr-endc.asm(12)

View File

@@ -1,4 +1,4 @@
error: 'FOO' already defined (should it be {interpolated} to define its contents "hello"?)
error: `FOO` already defined (should it be {interpolated} to define its contents "hello"?)
at command-line-symbols.asm(3)
and also:
at <command-line>

View File

@@ -1,3 +1,3 @@
error: Expected constant expression: 'UnDeFiNeD' is not constant at assembly time
error: Expected constant expression: `UnDeFiNeD` is not constant at assembly time
at compound-assignment.asm(35)
Assembly aborted with 1 error!

View File

@@ -1,9 +1,9 @@
error: PC has no value outside of a section
at const-and.asm(2)
error: Expected constant expression: 'Aligned' is not constant at assembly time
error: Expected constant expression: `Aligned` is not constant at assembly time
at const-and.asm(11)
error: Expected constant expression: PC is not constant at assembly time
at const-and.asm(17)
error: Expected constant expression: 'Floating' is not constant at assembly time
error: Expected constant expression: `Floating` is not constant at assembly time
at const-and.asm(20)
Assembly aborted with 4 errors!

View File

@@ -1,5 +1,5 @@
error: Section 'code' cannot contain code or data (not ROM0 or ROMX)
error: Section "code" cannot contain code or data (not `ROM0` or `ROMX`)
at data-in-ram.asm(2)
error: Section 'data' cannot contain code or data (not ROM0 or ROMX)
error: Section "data" cannot contain code or data (not `ROM0` or `ROMX`)
at data-in-ram.asm(4)
Assembly aborted with 2 errors!

View File

@@ -1,16 +1,16 @@
error: 'constant' already defined
error: `constant` already defined
at def.asm(23)
and also:
at def.asm(10)
error: 'mac' already defined as non-EQU
error: `mac` already defined as non-`EQU`
at def.asm(35)
and also:
at def.asm(32)
error: 'name' already defined (should it be {interpolated} to define its contents "constant2"?)
error: `name` already defined (should it be {interpolated} to define its contents "constant2"?)
at def.asm(38)
and also:
at def.asm(37)
error: 'name' already defined (should it be {interpolated} to define its contents "mac2"?)
error: `name` already defined (should it be {interpolated} to define its contents "mac2"?)
at def.asm(42)
and also:
at def.asm(40)

View File

@@ -1,5 +1,5 @@
warning: Invalid warning flag parameter "truncation=256"; capping at maximum 2
warning: Expression must be 8-bit; use LOW() to force 8-bit [-Wtruncation]
warning: Expression must be 8-bit; use `LOW()` to force 8-bit [-Wtruncation]
at diagnostic-parameter-cap.asm(3)
warning: Expression must be 8-bit; use LOW() to force 8-bit [-Wtruncation]
warning: Expression must be 8-bit; use `LOW()` to force 8-bit [-Wtruncation]
at diagnostic-parameter-cap.asm(4)

View File

@@ -1,5 +1,5 @@
error: syntax error, unexpected - at the beginning of the line (is it a leftover diff mark?)
error: syntax error, unexpected '-' at the beginning of the line (is it a leftover diff mark?)
at diff-marks.asm(2)
error: syntax error, unexpected + at the beginning of the line (is it a leftover diff mark?)
error: syntax error, unexpected '+' at the beginning of the line (is it a leftover diff mark?)
at diff-marks.asm(3)
Assembly aborted with 2 errors!

View File

@@ -1,3 +1,3 @@
error: Undefined symbol 'n' was already purged
error: Undefined symbol `n` was already purged
at double-purge.asm(3)
Assembly aborted with 1 error!

View File

@@ -1,5 +1,5 @@
error: Expected constant expression: 'unknown' is not constant at assembly time
error: Expected constant expression: `unknown` is not constant at assembly time
at ds-bad.asm(3)
warning: Expression must be 8-bit; use LOW() to force 8-bit [-Wtruncation]
warning: Expression must be 8-bit; use `LOW()` to force 8-bit [-Wtruncation]
at ds-bad.asm(4)
Assembly aborted with 1 error!

View File

@@ -1,2 +1,2 @@
FATAL: Found ELIF after an ELSE block
FATAL: Found `ELIF` after an `ELSE` block
at elif-after-else.asm(14)

View File

@@ -1,2 +1,2 @@
FATAL: Found ELIF outside of an IF construct
FATAL: Found `ELIF` outside of a conditional (not after an `IF`/`ELIF` block)
at elif-outside-if.asm(1)

View File

@@ -1,2 +1,2 @@
FATAL: Found ELSE outside of an IF construct
FATAL: Found `ELSE` outside of a conditional (not after an `IF`/`ELIF` block)
at else-outside-if.asm(1)

View File

@@ -1,6 +1,6 @@
warning: DB directive without data in ROM [-Wempty-data-directive]
warning: `DB` directive without data in ROM [-Wempty-data-directive]
at empty-data-directive.asm(6)
warning: DW directive without data in ROM [-Wempty-data-directive]
warning: `DW` directive without data in ROM [-Wempty-data-directive]
at empty-data-directive.asm(7)
warning: DL directive without data in ROM [-Wempty-data-directive]
warning: `DL` directive without data in ROM [-Wempty-data-directive]
at empty-data-directive.asm(8)

View File

@@ -1,2 +1,2 @@
FATAL: Unqualified local label '.test' in main scope
FATAL: Unqualified local label `.test` in main scope
at empty-local-purged.asm(3)

View File

@@ -1,2 +1,2 @@
FATAL: 'Referenced.' is a nonsensical reference to an empty local label
FATAL: `Referenced.` is a nonsensical reference to an empty local label
at empty-local-referenced.asm(3)

View File

@@ -1,2 +1,2 @@
FATAL: 'Label.' is a nonsensical reference to an empty local label
FATAL: `Label.` is a nonsensical reference to an empty local label
at empty-local-used.asm(4)

View File

@@ -1,2 +1,2 @@
FATAL: 'Label.' is a nonsensical reference to an empty local label
FATAL: `Label.` is a nonsensical reference to an empty local label
at empty-local.asm(4)

View File

@@ -1,2 +1,2 @@
FATAL: Found ENDC outside of an IF construct
FATAL: Found `ENDC` outside of a conditional (not after an `IF`/`ELIF`/`ELSE` block)
at endc-outside-if.asm(1)

View File

@@ -1,2 +1,2 @@
FATAL: Cannot end the section within a UNION
FATAL: Cannot end the section within a `UNION`
at endsection-in-union.asm(3)

View File

@@ -1,2 +1,2 @@
FATAL: Cannot end the section outside of a SECTION
FATAL: Cannot end the section outside of a `SECTION`
at endsection-outside-section.asm(1)

View File

@@ -1,3 +1,3 @@
error: Cannot output data outside of a SECTION
error: Cannot output data outside of a `SECTION`
at endsection.asm(4)
Assembly aborted with 1 error!

View File

@@ -1,6 +1,6 @@
warning: First [-Wuser]
at equs-newline.asm(3)
while expanding symbol "ACT"
while expanding symbol `ACT`
warning: Second [-Wuser]
at equs-newline.asm(3)
warning: Third [-Wuser]

View File

@@ -1,3 +1,3 @@
warning: Crash? [-Wuser]
at equs-purge.asm(2)
while expanding symbol "BYE"
while expanding symbol `BYE`

View File

@@ -1,68 +1,68 @@
FATAL: Recursion limit (64) exceeded
at equs-recursion.asm(2)
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`

View File

@@ -1,4 +1,4 @@
error: 'x' already defined
error: `x` already defined
at error-limit.asm(2)
and also:
at error-limit.asm(1)

View File

@@ -1,7 +1,7 @@
error: Base value must be equal to $FF00 for $FF00+C
error: Base value must be equal to $FF00 for [$FF00+C]
at ff00+c-bad.asm(8)
error: Expected constant expression: 'xyz' is not constant at assembly time
error: Expected constant expression: `xyz` is not constant at assembly time
at ff00+c-bad.asm(9)
error: Base value must be equal to $FF00 for $FF00+C
error: Base value must be equal to $FF00 for [$FF00+C]
at ff00+c-bad.asm(9)
Assembly aborted with 3 errors!

View File

@@ -1,183 +1,183 @@
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~1(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~2(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~2(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~3(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~3(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~4(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~4(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~5(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~5(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~6(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~6(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~7(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~7(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~8(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~8(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~9(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~9(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~10(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~10(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~11(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~11(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~12(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~12(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~13(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~13(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~14(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~14(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~15(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~15(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~16(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~16(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~17(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~17(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~18(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~18(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~19(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~19(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~20(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~20(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~21(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~21(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~22(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~22(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~23(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~23(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~24(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~24(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~25(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~25(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~26(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~26(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~27(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~27(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~28(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~28(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~29(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~29(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~30(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~30(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~31(12) <- fixed-point-magnitude.asm(1)
while expanding symbol "defMinBadValue"
while expanding symbol `defMinBadValue`
warning: Magnitude of fixed-point constant is too large [-Wlarge-constant]
at fixed-point-magnitude.asm::REPT~31(17) <- fixed-point-magnitude.asm(1)
while expanding symbol "defWorseValue"
while expanding symbol `defWorseValue`

View File

@@ -1,2 +1,2 @@
warning: FOR goes backwards from -2147483648 to -1 by -2147483648 [-Wbackwards-for]
warning: `FOR` goes backwards from -2147483648 to -1 by -2147483648 [-Wbackwards-for]
at for-loop-count.asm::test(12) <- for-loop-count.asm(19)

View File

@@ -1,4 +1,4 @@
error: 'y' already defined as constant
error: `y` already defined as constant
at for-loop-variable.asm(12)
and also:
at for-loop-variable.asm(8)

View File

@@ -1,16 +1,16 @@
warning: FOR goes backwards from 2 to 1 by 1 [-Wbackwards-for]
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
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]
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"?)
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
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
FATAL: Failed to update `FOR` symbol value
at for.asm::REPT~4(54) <- for.asm(48)

View File

@@ -1,2 +1,2 @@
FATAL: Section 'RAM' cannot contain fragment literals (not ROM0 or ROMX)
FATAL: Section "RAM" cannot contain fragment literals (not `ROM0` or `ROMX`)
at fragment-literal-in-ram.asm(6)

View File

@@ -1,3 +1,3 @@
error: BANK only allowed for ROMX, WRAMX, SRAM, or VRAM sections
error: `BANK` only allowed for `ROMX`, `WRAMX`, `SRAM`, or `VRAM` sections
at impossible-bank.asm(1)
Assembly aborted with 1 error!

View File

@@ -1,3 +1,3 @@
error: Specified range in INCBIN file 'empty.bin' is out of bounds (0 + 1 > 0)
error: Specified range in `INCBIN` file "empty.bin" is out of bounds (0 + 1 > 0)
at incbin-empty-bad.asm(3)
Assembly aborted with 1 error!

View File

@@ -1,3 +1,3 @@
error: Cannot output data outside of a SECTION
error: Cannot output data outside of a `SECTION`
at incbin-end-0.asm(1)
Assembly aborted with 1 error!

View File

@@ -1,3 +1,3 @@
error: Specified range in INCBIN file 'data.bin' is out of bounds (123 + 1 > 123)
error: Specified range in `INCBIN` file "data.bin" is out of bounds (123 + 1 > 123)
at incbin-end-bad.asm(3)
Assembly aborted with 1 error!

View File

@@ -1,3 +1,3 @@
error: Error reading pre-included file 'include-slash-nonexist.inc': No such file or directory
error: Error reading pre-included file "include-slash-nonexist.inc": No such file or directory
at include-slash.asm(0)
Assembly aborted with 1 error!

View File

@@ -1,7 +1,7 @@
error: syntax error, unexpected symbol
at interpolation-after-string.asm(5)
while expanding symbol "greeting"
while expanding symbol `greeting`
error: syntax error, unexpected string
at interpolation-after-string.asm(8)
while expanding symbol "string"
while expanding symbol `string`
Assembly aborted with 2 errors!

View File

@@ -2,8 +2,8 @@ error: Fractional width 99999999 too long, limiting to 255
at interpolation-overflow.asm(4)
warning: Precision of fixed-point constant is too large [-Wlarge-constant]
at interpolation-overflow.asm(4)
while expanding symbol "x"
error: '\1' cannot be used outside of a macro
while expanding symbol `x`
error: `\1` cannot be used outside of a macro
at interpolation-overflow.asm(4)
error: syntax error, unexpected number
at interpolation-overflow.asm(4)

View File

@@ -1,68 +1,68 @@
FATAL: Recursion limit (64) exceeded
at interpolation-recursion.asm(2)
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol "recurse"
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`
while expanding symbol `recurse`

View File

@@ -1,9 +1,9 @@
error: Interpolated symbol "undef" does not exist
error: Interpolated symbol `undef` does not exist
at interpolation.asm(18)
error: Interpolated symbol "label" does not exist
error: Interpolated symbol `label` does not exist
at interpolation.asm(22)
error: Interpolated symbol "foo" is not a numeric or string symbol
error: Interpolated symbol `foo` is not a numeric or string symbol
at interpolation.asm(29)
error: Interpolated symbol "xor" is a reserved keyword; add a '#' prefix to use it as a raw symbol
error: Interpolated symbol `xor` is a reserved keyword; add a '#' prefix to use it as a raw symbol
at interpolation.asm(32)
Assembly aborted with 4 errors!

View File

@@ -6,10 +6,10 @@ error: Alignment must be between 0 and 16, not 20
at invalid-alignment.asm(13)
error: Alignment must be between 0 and 16, not 20
at invalid-alignment.asm(15)
error: Section "d"'s fixed address doesn't match its alignment
error: Section "d"'s fixed address does not match its alignment
at invalid-alignment.asm(19)
error: Section "e"'s fixed address doesn't match its alignment
error: Section "e"'s fixed address does not match its alignment
at invalid-alignment.asm(21)
error: Section "f"'s fixed address doesn't match its alignment
error: Section "f"'s fixed address does not match its alignment
at invalid-alignment.asm(23)
Assembly aborted with 7 errors!

View File

@@ -10,9 +10,9 @@ error: Fixed-point constant precision 0 invalid, defaulting to 16
at invalid-format.asm(5)
error: STRFMT: Invalid format spec for argument 2
at invalid-format.asm(5)
error: Invalid format spec '5d5'
error: Invalid format spec "5d5"
at invalid-format.asm(8)
error: Invalid format spec 'xx'
error: Invalid format spec "xx"
at invalid-format.asm(9)
error: Formatting string with sign flag '+'
at invalid-format.asm(11)

View File

@@ -1,8 +1,8 @@
error: Address $10000 is not 16-bit
at invalid-instructions.asm(1)
error: LD [HL], [HL] is not a valid instruction
error: "LD [HL], [HL]" is not a valid instruction
at invalid-instructions.asm(2)
error: Base value must be equal to $FF00 for $FF00+C
error: Base value must be equal to $FF00 for [$FF00+C]
at invalid-instructions.asm(3)
error: syntax error, unexpected c, expecting hl
at invalid-instructions.asm(4)
@@ -12,19 +12,19 @@ error: syntax error, unexpected number, expecting hl
at invalid-instructions.asm(6)
warning: Expression must be 3-bit [-Wtruncation]
at invalid-instructions.asm(7)
error: Invalid bit index 8 for BIT
error: Invalid bit index 8 for `BIT`
at invalid-instructions.asm(7)
error: Invalid address $40 for RST
error: Invalid address $40 for `RST`
at invalid-instructions.asm(8)
error: LD BC, BC is not a valid instruction; use LD B, B and LD C, C
error: "LD BC, BC" is not a valid instruction; use "LD B, B" and "LD C, C"
at invalid-instructions.asm(10)
error: LD DE, HL is not a valid instruction; use LD D, H and LD E, L
error: "LD DE, HL" is not a valid instruction; use "LD D, H" and "LD E, L"
at invalid-instructions.asm(11)
error: LD HL, DE is not a valid instruction; use LD H, D and LD L, E
error: "LD HL, DE" is not a valid instruction; use "LD H, D" and "LD L, E"
at invalid-instructions.asm(12)
error: LD HL, SP is not a valid instruction; use LD HL, SP + 0
error: "LD HL, SP" is not a valid instruction; use "LD HL, SP + 0"
at invalid-instructions.asm(14)
error: LD SP, BC is not a valid instruction
error: "LD SP, BC" is not a valid instruction
at invalid-instructions.asm(17)
error: syntax error, unexpected sp
at invalid-instructions.asm(18)

View File

@@ -1,3 +1,3 @@
error: JR target must be between -128 and 127 bytes away, not -258; use JP instead
error: `JR` target must be between -128 and 127 bytes away, not -258; use `JP` instead
at invalid-jr.asm(3)
Assembly aborted with 1 error!

View File

@@ -1,3 +1,3 @@
error: Bracketed symbol "foo" does not exist
error: Bracketed symbol `foo` does not exist
at invalid-macro-arg-symbol.asm(1)
Assembly aborted with 1 error!

View File

@@ -28,7 +28,7 @@ error: Invalid argument for option 'Q'
at invalid-opt.asm(14)
error: Argument for option 'Q' must be between 1 and 31
at invalid-opt.asm(15)
error: Argument to 'r' is out of range ("99999999999999999999999999")
error: Argument for option 'r' is out of range ("99999999999999999999999999")
at invalid-opt.asm(16)
error: Must specify an argument for option 'W'
at invalid-opt.asm(17)

View File

@@ -1,5 +1,5 @@
warning: Invalid warning flag parameter "truncation=99"; capping at maximum 2
warning: Expression must be 8-bit; use LOW() to force 8-bit [-Wtruncation]
warning: Expression must be 8-bit; use `LOW()` to force 8-bit [-Wtruncation]
at invalid-param.asm(2)
warning: Expression must be 8-bit; use LOW() to force 8-bit [-Wtruncation]
warning: Expression must be 8-bit; use `LOW()` to force 8-bit [-Wtruncation]
at invalid-param.asm(3)

View File

@@ -1,9 +1,9 @@
error: Found ENDU outside of a UNION construct
error: Found `ENDU` outside of a `UNION` construct
at invalid-union.asm(1)
error: Found NEXTU outside of a UNION construct
error: Found `NEXTU` outside of a `UNION` construct
at invalid-union.asm(2)
error: UNIONs must be inside a SECTION
error: `UNION`s must be inside a `SECTION`
at invalid-union.asm(3)
error: Unterminated UNION construct
error: Unterminated `UNION` construct
at invalid-union.asm(7)
Assembly aborted with 4 errors!

View File

@@ -1,12 +1,12 @@
warning: Test #1: Compile-time constant [-Wuser]
at isconst.asm::test_expr(10) <- isconst.asm(14)
error: Expected constant expression: 'UnknownLabel' is not constant at assembly time
error: Expected constant expression: `UnknownLabel` is not constant at assembly time
at isconst.asm::test_expr(9) <- isconst.asm(15)
warning: Test #3: Compile-time constant [-Wuser]
at isconst.asm::test_expr(10) <- isconst.asm(21)
warning: Test #4: Compile-time constant [-Wuser]
at isconst.asm::test_expr(10) <- isconst.asm(22)
error: Expected constant expression: 'FloatingLabel' is not constant at assembly time
error: Expected constant expression: `FloatingLabel` is not constant at assembly time
at isconst.asm::test_expr(9) <- isconst.asm(28)
warning: Test #6: Compile-time constant [-Wuser]
at isconst.asm::test_expr(10) <- isconst.asm(29)

View File

@@ -1,36 +1,36 @@
error: Expected constant expression: 'Known' is not constant at assembly time
error: Expected constant expression: `Known` is not constant at assembly time
at label-diff.asm::print_diff(19) <- label-diff.asm(28)
error: Expected constant expression: 'Known' is not constant at assembly time
error: Expected constant expression: `Known` is not constant at assembly time
at label-diff.asm::print_diff(20) <- label-diff.asm(28)
error: Expected constant expression: 'Unknown' is not constant at assembly time
error: Expected constant expression: `Unknown` is not constant at assembly time
at label-diff.asm::print_diff(19) <- label-diff.asm(30)
error: Expected constant expression: 'Unknown' is not constant at assembly time
error: Expected constant expression: `Unknown` is not constant at assembly time
at label-diff.asm::print_diff(20) <- label-diff.asm(30)
error: Expected constant expression: 'Known' is not constant at assembly time
error: Expected constant expression: `Known` is not constant at assembly time
at label-diff.asm::print_diff(19) <- label-diff.asm(32)
error: Expected constant expression: 'Unknown' is not constant at assembly time
error: Expected constant expression: `Unknown` is not constant at assembly time
at label-diff.asm::print_diff(20) <- label-diff.asm(32)
error: Expected constant expression: 'Unknown' is not constant at assembly time
error: Expected constant expression: `Unknown` is not constant at assembly time
at label-diff.asm::print_diff(19) <- label-diff.asm(34)
error: Expected constant expression: 'Unknown2' is not constant at assembly time
error: Expected constant expression: `Unknown2` is not constant at assembly time
at label-diff.asm::print_diff(20) <- label-diff.asm(34)
error: Expected constant expression: 'Known' is not constant at assembly time
error: Expected constant expression: `Known` is not constant at assembly time
at label-diff.asm::print_diff(19) <- label-diff.asm(41)
error: Expected constant expression: 'Known' is not constant at assembly time
error: Expected constant expression: `Known` is not constant at assembly time
at label-diff.asm::print_diff(20) <- label-diff.asm(41)
error: Expected constant expression: 'Unknown' is not constant at assembly time
error: Expected constant expression: `Unknown` is not constant at assembly time
at label-diff.asm::print_diff(19) <- label-diff.asm(43)
error: Expected constant expression: 'Unknown' is not constant at assembly time
error: Expected constant expression: `Unknown` is not constant at assembly time
at label-diff.asm::print_diff(20) <- label-diff.asm(43)
error: Expected constant expression: PC is not constant at assembly time
at label-diff.asm::print_diff(19) <- label-diff.asm(54)
error: Expected constant expression: PC is not constant at assembly time
at label-diff.asm::print_diff(20) <- label-diff.asm(54)
error: Expected constant expression: 'Known' is not constant at assembly time
error: Expected constant expression: `Known` is not constant at assembly time
at label-diff.asm::print_diff(19) <- label-diff.asm(56)
error: Expected constant expression: PC is not constant at assembly time
at label-diff.asm::print_diff(20) <- label-diff.asm(56)
error: Expected constant expression: 'Unknown' is not constant at assembly time
error: Expected constant expression: `Unknown` is not constant at assembly time
at label-diff.asm::print_diff(19) <- label-diff.asm(58)
error: Expected constant expression: PC is not constant at assembly time
at label-diff.asm::print_diff(20) <- label-diff.asm(58)

View File

@@ -1,17 +1,17 @@
error: syntax error, unexpected local label, expecting symbol
at label-macro-arg.asm::test_char(25) <- label-macro-arg.asm(38)
while expanding symbol "VAR_DEF"
while expanding symbol `VAR_DEF`
error: syntax error, unexpected local label, expecting symbol
at label-macro-arg.asm::test_char(26) <- label-macro-arg.asm(38)
error: Interpolated symbol "sizeof_.something" does not exist
error: Interpolated symbol `sizeof_.something` does not exist
at label-macro-arg.asm::test_char(29) <- label-macro-arg.asm(38)
error: syntax error, unexpected label, expecting symbol
at label-macro-arg.asm::test_char(25) <- label-macro-arg.asm(39)
while expanding symbol "VAR_DEF"
while expanding symbol `VAR_DEF`
error: syntax error, unexpected label, expecting symbol
at label-macro-arg.asm::test_char(26) <- label-macro-arg.asm(39)
error: Invalid format spec 'sizeof_'
error: Invalid format spec "sizeof_"
at label-macro-arg.asm::test_char(29) <- label-macro-arg.asm(39)
error: Interpolated symbol "something" does not exist
error: Interpolated symbol `something` does not exist
at label-macro-arg.asm::test_char(29) <- label-macro-arg.asm(39)
Assembly aborted with 7 errors!

View File

@@ -1,3 +1,3 @@
error: Label "bad" created outside of a SECTION
error: Label `bad` created outside of a `SECTION`
at label-outside-section.asm(1)
Assembly aborted with 1 error!

View File

@@ -1,4 +1,4 @@
error: 'Sym' already defined
error: `Sym` already defined
at label-redefinition.asm(7)
and also:
at label-redefinition.asm::m(4) <- label-redefinition.asm(6)

View File

@@ -1,13 +1,13 @@
error: Undefined symbol '@'
error: Undefined symbol `@`
at label-scope.asm(3)
error: Undefined symbol '.'
error: Undefined symbol `.`
at label-scope.asm(3)
error: Undefined symbol '..'
error: Undefined symbol `..`
at label-scope.asm(3)
error: Built-in symbol '@' cannot be purged
error: Built-in symbol `@` cannot be purged
at label-scope.asm(12)
error: Built-in symbol '.' cannot be purged
error: Built-in symbol `.` cannot be purged
at label-scope.asm(12)
error: Built-in symbol '..' cannot be purged
error: Built-in symbol `..` cannot be purged
at label-scope.asm(12)
Assembly aborted with 6 errors!

View File

@@ -1,11 +1,11 @@
error: "Label1" is not a macro
error: `Label1` is not a macro
at lexer-hack.asm(22)
error: 'mac' already defined
error: `mac` already defined
at lexer-hack.asm(24)
and also:
at lexer-hack.asm(1)
error: Undefined macro "undef"
error: Undefined macro `undef`
at lexer-hack.asm(27)
error: Undefined macro "undef"
error: Undefined macro `undef`
at lexer-hack.asm(28)
Assembly aborted with 4 errors!

View File

@@ -1,3 +1,3 @@
error: Label "foo" created outside of a SECTION
error: Label `foo` created outside of a `SECTION`
at line-continuation-whitespace.asm(7)
Assembly aborted with 1 error!

View File

@@ -2,6 +2,6 @@ error: Invalid character 's' after line continuation
at line-continuation.asm(3)
warning: spam [-Wuser]
at line-continuation.asm::spam(4) <- line-continuation.asm(6)
error: Label "foo" created outside of a SECTION
error: Label `foo` created outside of a `SECTION`
at line-continuation.asm(14)
Assembly aborted with 2 errors!

View File

@@ -1,15 +1,15 @@
warning: DB directive without data in ROM [-Wempty-data-directive]
warning: `DB` directive without data in ROM [-Wempty-data-directive]
at load-overflow.asm(5)
warning: DB directive without data in ROM [-Wempty-data-directive]
warning: `DB` directive without data in ROM [-Wempty-data-directive]
at load-overflow.asm(6)
error: Section 'Overflow' grew too big (max size = 0x8000 bytes, reached 0x8002)
error: Section "Overflow" grew too big (max size = 0x8000 bytes, reached 0x8002)
at load-overflow.asm(26)
error: Section 'oops' grew too big (max size = 0x2000 bytes, reached 0x2002)
error: Section "oops" grew too big (max size = 0x2000 bytes, reached 0x2002)
at load-overflow.asm(26)
error: Section 'Moar overflow' grew too big (max size = 0x8000 bytes, reached 0xD000)
error: Section "Moar overflow" grew too big (max size = 0x8000 bytes, reached 0xD000)
at load-overflow.asm(26)
error: Section 'hmm' grew too big (max size = 0x2000 bytes, reached 0x4000)
error: Section "hmm" grew too big (max size = 0x2000 bytes, reached 0x4000)
at load-overflow.asm(26)
error: Section 'lol' grew too big (max size = 0x2000 bytes, reached 0x3000)
error: Section "lol" grew too big (max size = 0x2000 bytes, reached 0x3000)
at load-overflow.asm(26)
Assembly aborted with 5 errors!

View File

@@ -1,5 +1,5 @@
warning: Purging a label ".loc" [-Wpurge]
warning: Purging a label `.loc` [-Wpurge]
at local-purge.asm(7)
error: Interpolated symbol ".loc" does not exist; it was purged
error: Interpolated symbol `.loc` does not exist; it was purged
at local-purge.asm(8)
Assembly aborted with 1 error!

View File

@@ -1,2 +1,2 @@
FATAL: Unqualified local label '.test' in main scope
FATAL: Unqualified local label `.test` in main scope
at local-ref-without-parent.asm(3)

View File

@@ -1,2 +1,2 @@
FATAL: Unqualified local label '.test' in main scope
FATAL: Unqualified local label `.test` in main scope
at local-without-parent.asm(3)

View File

@@ -1,5 +1,5 @@
error: Label "foo" created outside of a SECTION
error: Label `foo` created outside of a `SECTION`
at macro-@.asm(1)
error: "@" is not a macro
error: `@` is not a macro
at macro-@.asm(1)
Assembly aborted with 2 errors!

View File

@@ -1,5 +1,5 @@
error: Invalid character '0' after line continuation
at macro-arg-0.asm::m(2) <- macro-arg-0.asm(5)
error: Invalid bracketed macro argument '\<0>'
error: Invalid bracketed macro argument "\<0>"
at macro-arg-0.asm::m(3) <- macro-arg-0.asm(5)
Assembly aborted with 2 errors!

View File

@@ -1,5 +1,5 @@
error: Illegal character escape 'w'
at macro-arg-illegal-escape.asm(5)
error: Illegal character escape at end of input
error: Illegal character escape '\' at end of input
at macro-arg-illegal-escape.asm(5)
Assembly aborted with 2 errors!

View File

@@ -1,7 +1,7 @@
error: '\1' cannot be used outside of a macro
error: `\1` cannot be used outside of a macro
at macro-args-outside-macro.asm(1)
error: '\<2>' cannot be used outside of a macro
error: `\<2>` cannot be used outside of a macro
at macro-args-outside-macro.asm(2)
error: '\#' cannot be used outside of a macro
error: `\#` cannot be used outside of a macro
at macro-args-outside-macro.asm(3)
Assembly aborted with 3 errors!

View File

@@ -1,11 +1,11 @@
error: Label "old" created outside of a SECTION
error: Label `old` created outside of a `SECTION`
at macro-syntax.asm(7)
error: syntax error, unexpected MACRO
at macro-syntax.asm(7)
error: '\1' cannot be used outside of a macro
error: `\1` cannot be used outside of a macro
at macro-syntax.asm(8)
error: syntax error, unexpected ENDM
at macro-syntax.asm(9)
error: "old" is not a macro
error: `old` is not a macro
at macro-syntax.asm(11)
Assembly aborted with 5 errors!

View File

@@ -12,9 +12,9 @@ error: Strings as numbers must be a single charmap unit
at multiple-charmaps.asm::print_mapped(34) <- multiple-charmaps.asm(96)
error: Strings as numbers must be a single charmap unit
at multiple-charmaps.asm::print_mapped(34) <- multiple-charmaps.asm(104)
error: Charmap 'map1' already exists
error: Charmap `map1` is already defined
at multiple-charmaps.asm::new_(9) <- multiple-charmaps.asm(106)
error: Charmap 'map5' doesn't exist
error: Undefined charmap `map5`
at multiple-charmaps.asm::set_(15) <- multiple-charmaps.asm(108)
error: No entries in the charmap stack
at multiple-charmaps.asm::pop_(30) <- multiple-charmaps.asm(110)

View File

@@ -1,2 +1,2 @@
FATAL: 'Parent...spare' is a nonsensical reference to a nested local label
FATAL: `Parent...spare` is a nonsensical reference to a nested local label
at multiple-dots-local.asm(6)

View File

@@ -1,2 +1,2 @@
FATAL: Found ELSE after an ELSE block
FATAL: Found `ELSE` after an `ELSE` block
at multiple-else.asm(11)

View File

@@ -1,26 +1,26 @@
error: Invalid bracketed macro argument '\<0>'
error: Invalid bracketed macro argument "\<0>"
at negative-macro-args.asm::mac(7) <- negative-macro-args.asm(21)
error: Invalid bracketed macro argument '\<0>'
error: Invalid bracketed macro argument "\<0>"
at negative-macro-args.asm::mac(7) <- negative-macro-args.asm(21)
error: Macro argument '\<-8>' not defined
error: Macro argument `\<-8>` not defined
at negative-macro-args.asm::mac(9) <- negative-macro-args.asm(21)
error: Macro argument '\<-8>' not defined
error: Macro argument `\<-8>` not defined
at negative-macro-args.asm::mac(9) <- negative-macro-args.asm(21)
error: Macro argument '\<2147483647>' not defined
error: Macro argument `\<2147483647>` not defined
at negative-macro-args.asm::mac(11) <- negative-macro-args.asm(21)
error: Macro argument '\<2147483647>' not defined
error: Macro argument `\<2147483647>` not defined
at negative-macro-args.asm::mac(11) <- negative-macro-args.asm(21)
error: Macro argument '\<-2147483648>' not defined
error: Macro argument `\<-2147483648>` not defined
at negative-macro-args.asm::mac(14) <- negative-macro-args.asm(21)
error: Number in bracketed macro argument is too large
at negative-macro-args.asm::mac(14) <- negative-macro-args.asm(21)
while expanding symbol "i"
error: Macro argument '\<-2147483648>' not defined
while expanding symbol `i`
error: Macro argument `\<-2147483648>` not defined
at negative-macro-args.asm::mac(15) <- negative-macro-args.asm(21)
error: Number in bracketed macro argument is too large
at negative-macro-args.asm::mac(15) <- negative-macro-args.asm(21)
while expanding symbol "i"
while expanding symbol `i`
error: Number in bracketed macro argument is too large
at negative-macro-args.asm::mac(18) <- negative-macro-args.asm(21)
while expanding symbol "i"
while expanding symbol `i`
Assembly aborted with 11 errors!

View File

@@ -1,18 +1,18 @@
error: Interpolated symbol "a" is a reserved keyword; add a '#' prefix to use it as a raw symbol
error: Interpolated symbol `a` is a reserved keyword; add a '#' prefix to use it as a raw symbol
at nested-bad-interpolation.asm(1)
error: Interpolated symbol "" does not exist
error: Interpolated symbol `` does not exist
at nested-bad-interpolation.asm(1)
error: syntax error, unexpected end of line
at nested-bad-interpolation.asm(1)
error: Interpolated symbol "b" is a reserved keyword; add a '#' prefix to use it as a raw symbol
error: Interpolated symbol `b` is a reserved keyword; add a '#' prefix to use it as a raw symbol
at nested-bad-interpolation.asm(2)
warning: Treating strings as numbers is deprecated [-Wobsolete]
at nested-bad-interpolation.asm(2)
error: Strings as numbers must be a single charmap unit
at nested-bad-interpolation.asm(2)
error: Interpolated symbol "c" is a reserved keyword; add a '#' prefix to use it as a raw symbol
error: Interpolated symbol `c` is a reserved keyword; add a '#' prefix to use it as a raw symbol
at nested-bad-interpolation.asm(3)
error: Interpolated symbol "" does not exist
error: Interpolated symbol `` does not exist
at nested-bad-interpolation.asm(3)
warning: Treating strings as numbers is deprecated [-Wobsolete]
at nested-bad-interpolation.asm(3)

View File

@@ -1,3 +1,3 @@
error: Missing }
error: Missing '}'
at nested-brackets.asm(5)
Assembly aborted with 1 error!

View File

@@ -1,3 +1,3 @@
error: Undefined macro "qux"
error: Undefined macro `qux`
at nested-expansions.asm::test(4) <- nested-expansions.asm(6)
Assembly aborted with 1 error!

View File

@@ -1,2 +1,2 @@
FATAL: 'Parent.child.grandchild' is a nonsensical reference to a nested local label
FATAL: `Parent.child.grandchild` is a nonsensical reference to a nested local label
at nested-local-reference.asm(8)

View File

@@ -1,2 +1,2 @@
FATAL: 'Parent.child.grandchild' is a nonsensical reference to a nested local label
FATAL: `Parent.child.grandchild` is a nonsensical reference to a nested local label
at nested-local.asm(6)

View File

@@ -2,6 +2,6 @@ warning: Nested macros shouldn't work, whose argument would be \1? [-Wuser]
at nested-macrodef.asm::outer(22) <- nested-macrodef.asm(26)
error: Unterminated macro definition
at nested-macrodef.asm::outer(24) <- nested-macrodef.asm(26)
error: Undefined macro "inner"
error: Undefined macro `inner`
at nested-macrodef.asm(27)
Assembly aborted with 2 errors!

View File

@@ -1,2 +1,2 @@
FATAL: Section 'A' is already on the stack
FATAL: Section "A" is already on the stack
at new-pushed-section.asm(4)

View File

@@ -1,13 +1,13 @@
error: 'mac' is not a numeric symbol
error: `mac` is not a numeric symbol
at non-numeric-symbol.asm(4)
error: 'mac' is not a numeric symbol
error: `mac` is not a numeric symbol
at non-numeric-symbol.asm(5)
error: 'mac' is not a numeric symbol
error: `mac` is not a numeric symbol
at non-numeric-symbol.asm(6)
error: 'mac' is not a numeric symbol
error: `mac` is not a numeric symbol
at non-numeric-symbol.asm(9)
error: 'mac' is not a numeric symbol
error: `mac` is not a numeric symbol
at non-numeric-symbol.asm(10)
error: 'mac' is not a numeric symbol
error: `mac` is not a numeric symbol
at non-numeric-symbol.asm(11)
Assembly aborted with 6 errors!

View File

@@ -1,3 +1,3 @@
error: Error opening INCLUDE file 'nonexist-include.inc': No such file or directory
error: Error opening `INCLUDE` file "nonexist-include.inc": No such file or directory
at nonexist-include.asm(1)
Assembly aborted with 1 error!

View File

@@ -1,6 +1,6 @@
error: Missing argument to option 'r'
error: Missing argument for option 'r'
at opt-r.asm(5)
error: Invalid argument to option 'r' ("2a")
error: Invalid argument for option 'r' ("2a")
at opt-r.asm(6)
FATAL: Recursion limit (0) exceeded
at opt-r.asm(13)

View File

@@ -1,5 +1,5 @@
error: Label "DisallowedContent" created outside of a SECTION
error: Label `DisallowedContent` created outside of a `SECTION`
at pops-restore-no-section.asm(9)
error: Cannot output data outside of a SECTION
error: Cannot output data outside of a `SECTION`
at pops-restore-no-section.asm(10)
Assembly aborted with 2 errors!

View File

@@ -1,2 +1,2 @@
warning: Purging an exported symbol "u" [-Wpurge]
warning: Purging an exported symbol `u` [-Wpurge]
at purge-multiple.asm(9)

View File

@@ -1,11 +1,11 @@
error: Symbol "ref" is referenced and thus cannot be purged
error: Symbol `ref` is referenced and thus cannot be purged
at purge-ref.asm(4)
warning: Purging a label "OK" [-Wpurge]
warning: Purging a label `OK` [-Wpurge]
at purge-ref.asm(7)
error: Symbol "NotOK" is referenced and thus cannot be purged
error: Symbol `NotOK` is referenced and thus cannot be purged
at purge-ref.asm(11)
error: Symbol "EvenLessOK" is referenced and thus cannot be purged
error: Symbol `EvenLessOK` is referenced and thus cannot be purged
at purge-ref.asm(15)
warning: Purging a label "Maybe" [-Wpurge]
warning: Purging a label `Maybe` [-Wpurge]
at purge-ref.asm(23)
Assembly aborted with 3 errors!

View File

@@ -1,5 +1,5 @@
error: Symbol "Floating" is referenced and thus cannot be purged
error: Symbol `Floating` is referenced and thus cannot be purged
at purge-refs.asm(6)
warning: Purging a label "Fixed" [-Wpurge]
warning: Purging a label `Fixed` [-Wpurge]
at purge-refs.asm(13)
Assembly aborted with 1 error!

View File

@@ -1,9 +1,9 @@
warning: Purging a label "Label" [-Wpurge]
warning: Purging a label `Label` [-Wpurge]
at purge.asm(5)
error: Symbol "Referenced" is referenced and thus cannot be purged
error: Symbol `Referenced` is referenced and thus cannot be purged
at purge.asm(9)
warning: Purging an exported symbol "Exported" [-Wpurge]
warning: Purging an exported symbol `Exported` [-Wpurge]
at purge.asm(12)
error: Undefined symbol 'Undefined'
error: Undefined symbol `Undefined`
at purge.asm(15)
Assembly aborted with 2 errors!

View File

@@ -1,3 +1,3 @@
error: Cannot output data outside of a SECTION
error: Cannot output data outside of a `SECTION`
at pushs.asm(5)
Assembly aborted with 1 error!

Some files were not shown because too many files have changed in this diff Show More