mirror of
https://github.com/gbdev/rgbds.git
synced 2026-05-08 10:59:36 +00:00
ede9405daf
- No fractional digits are necessary after the decimal point, e.g. `42.` is valid instead of `42.0` - Error messages refer to "fixed-point" not "integer" constants - Test more carefully for lexing unrelated to underscores
36 lines
1.4 KiB
Plaintext
36 lines
1.4 KiB
Plaintext
error: Invalid integer constant, '_' after another '_'
|
|
at invalid-underscore.asm(14)
|
|
error: Invalid integer constant, '_' after another '_'
|
|
at invalid-underscore.asm(15)
|
|
error: Invalid integer constant, '_' after another '_'
|
|
at invalid-underscore.asm(16)
|
|
error: Invalid integer constant, '_' after another '_'
|
|
at invalid-underscore.asm(17)
|
|
error: Invalid integer constant, '_' after another '_'
|
|
at invalid-underscore.asm(18)
|
|
error: Invalid fixed-point constant, '_' after another '_'
|
|
at invalid-underscore.asm(19)
|
|
error: Invalid fixed-point constant, '_' after another '_'
|
|
at invalid-underscore.asm(20)
|
|
error: Invalid integer constant, trailing '_'
|
|
at invalid-underscore.asm(23)
|
|
error: Invalid integer constant, trailing '_'
|
|
at invalid-underscore.asm(24)
|
|
error: Invalid integer constant, trailing '_'
|
|
at invalid-underscore.asm(25)
|
|
error: Invalid integer constant, trailing '_'
|
|
at invalid-underscore.asm(26)
|
|
error: Invalid graphics constant, trailing '_'
|
|
at invalid-underscore.asm(27)
|
|
error: Invalid fixed-point constant, trailing '_'
|
|
at invalid-underscore.asm(28)
|
|
error: Invalid integer constant, trailing '_'
|
|
at invalid-underscore.asm(31)
|
|
error: Invalid fixed-point constant, '_' after '.'
|
|
at invalid-underscore.asm(32)
|
|
error: syntax error, unexpected symbol
|
|
at invalid-underscore.asm(35)
|
|
error: syntax error, unexpected symbol
|
|
at invalid-underscore.asm(36)
|
|
Assembly aborted with 17 errors
|