1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 04:30:10 +00:00

Change result of .CPU pseudo variable

git-svn-id: svn://svn.cc65.org/cc65/trunk@2505 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-10-10 17:38:06 +00:00
parent f721907ab3
commit 2e030b707c

View File

@ -38,6 +38,7 @@
/* common */
#include "check.h"
#include "cpu.h"
#include "exprdefs.h"
#include "print.h"
#include "tgttrans.h"
@ -634,7 +635,7 @@ static ExprNode* Factor (void)
break;
case TOK_CPU:
N = GenLiteralExpr (GetCPU());
N = GenLiteralExpr (CPUIsets[CPU]);
NextTok ();
break;