forked from gbdev/rgbds
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parser refers to "symbol"s, "label"s, and "local label"s, not "identi…
…fier"s (gbdev#1652) This better matches how the lexed tokens are discussed in rgbasm(5)
- Loading branch information
Showing
8 changed files
with
72 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
error: def-scoped.asm(10): | ||
syntax error, unexpected local identifier, expecting identifier | ||
syntax error, unexpected local label, expecting symbol | ||
error: def-scoped.asm(13): | ||
syntax error, unexpected local identifier, expecting identifier | ||
syntax error, unexpected local label, expecting symbol | ||
error: def-scoped.asm(16): | ||
syntax error, unexpected local identifier, expecting identifier | ||
syntax error, unexpected local label, expecting symbol | ||
error: Assembly aborted (3 errors)! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
error: error-recovery.asm(3): | ||
syntax error, unexpected number | ||
error: error-recovery.asm(5) -> error-recovery.asm::REPT~1(7): | ||
syntax error, unexpected identifier | ||
syntax error, unexpected symbol | ||
error: Assembly aborted (2 errors)! |
Oops, something went wrong.