mirror of
https://github.com/cc65/cc65.git
synced 2025-08-09 13:25:06 +00:00
"S" is a keyword in 65816 mode only.
git-svn-id: svn://svn.cc65.org/cc65/trunk@3958 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -1013,8 +1013,11 @@ Again:
|
||||
break;
|
||||
|
||||
case 'S':
|
||||
Tok = TOK_S;
|
||||
return;
|
||||
if (CPU == CPU_65816) {
|
||||
Tok = TOK_S;
|
||||
return;
|
||||
}
|
||||
break;
|
||||
|
||||
case 'X':
|
||||
Tok = TOK_X;
|
||||
|
Reference in New Issue
Block a user