/* */
/* */
/* */
-/* (C) 1998-2000 Ullrich von Bassewitz */
-/* Wacholderweg 14 */
-/* D-70597 Stuttgart */
-/* EMail: uz@musoftware.de */
+/* (C) 1998-2003 Ullrich von Bassewitz */
+/* Römerstraße 52 */
+/* D-70794 Filderstadt */
+/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
printf (" BOOL_NOT");
break;
- case EXPR_FORCEWORD:
- printf (" FORCE_WORD");
- break;
-
- case EXPR_FORCEFAR:
- printf (" FORCE_FAR");
- break;
-
case EXPR_BYTE0:
printf (" BYTE0");
break;
/* */
/* */
/* */
-/* (C) 1998-2000 Ullrich von Bassewitz */
-/* Wacholderweg 14 */
-/* D-70597 Stuttgart */
-/* EMail: uz@musoftware.de */
+/* (C) 1998-2003 Ullrich von Bassewitz */
+/* Römerstraße 52 */
+/* D-70794 Filderstadt */
+/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
#define EXPR_NOT (EXPR_UNARYNODE | 0x02)
#define EXPR_SWAP (EXPR_UNARYNODE | 0x03)
#define EXPR_BOOLNOT (EXPR_UNARYNODE | 0x04)
-#define EXPR_FORCEWORD (EXPR_UNARYNODE | 0x05)
-#define EXPR_FORCEFAR (EXPR_UNARYNODE | 0x06)
#define EXPR_BYTE0 (EXPR_UNARYNODE | 0x08)
#define EXPR_BYTE1 (EXPR_UNARYNODE | 0x09)
case EXPR_BOOLNOT:
return !GetExprVal (Expr->Left);
- case EXPR_FORCEWORD:
- case EXPR_FORCEFAR:
- /* These two have no effect on the expression result */
- return GetExprVal (Expr->Left);
-
case EXPR_BYTE0:
return GetExprVal (Expr->Left) & 0xFF;
case EXPR_WORD1:
return (GetExprVal (Expr->Left) >> 16) & 0xFFFF;
- default:
+ default:
Internal ("Unknown expression Op type: %u", Expr->Op);
/* NOTREACHED */
return 0;