mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
Partially fixed a bug with the long addressing modes that was introduced
with a change in the scanner and went undetected since then. Use of symbols as lower part of the address does still not work. git-svn-id: svn://svn.cc65.org/cc65/trunk@632 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
3e5ed62469
commit
857a362e78
@ -706,9 +706,9 @@ Again:
|
|||||||
NextChar ();
|
NextChar ();
|
||||||
|
|
||||||
if (!IsIdStart (C)) {
|
if (!IsIdStart (C)) {
|
||||||
Error (ERR_PSEUDO_EXPECTED);
|
/* Just a dot */
|
||||||
/* Try to read an identifier */
|
Tok = TOK_DOT;
|
||||||
goto Again;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read the identifier */
|
/* Read the identifier */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user