mirror of
https://github.com/cc65/cc65.git
synced 2025-08-09 13:25:06 +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:
@@ -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);
|
||||
|
||||
|
@@ -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)
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user