1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 00:29:31 +00:00

Forgot to check these in. They contain the new expression opcodes for far

addresses (24 bit) and dwords (32 bit).


git-svn-id: svn://svn.cc65.org/cc65/trunk@5409 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2012-01-19 11:50:21 +00:00
parent 5df392ff14
commit 3f8ceff73f
2 changed files with 10 additions and 0 deletions

View File

@ -210,6 +210,14 @@ static void InternalDumpExpr (const ExprNode* Expr, const ExprNode* (*ResolveSym
printf (" WORD1");
break;
case EXPR_FARADDR:
printf (" FARADDR");
break;
case EXPR_DWORD:
printf (" DWORD");
break;
default:
AbEnd ("Unknown Op type: %u", Expr->Op);

View File

@ -98,6 +98,8 @@
#define EXPR_BYTE3 (EXPR_UNARYNODE | 0x0B)
#define EXPR_WORD0 (EXPR_UNARYNODE | 0x0C)
#define EXPR_WORD1 (EXPR_UNARYNODE | 0x0D)
#define EXPR_FARADDR (EXPR_UNARYNODE | 0x0E)
#define EXPR_DWORD (EXPR_UNARYNODE | 0x0F)