disabled assertions, fixed bug with pack/unpk
This commit is contained in:
parent
d843ec9f7a
commit
2381b2e136
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@
|
||||||
#define WORDS_REVERSED /* high order word has lowest address */
|
#define WORDS_REVERSED /* high order word has lowest address */
|
||||||
#define LISTING /* enable listing facilities */
|
#define LISTING /* enable listing facilities */
|
||||||
#define RELOCATION /* generate relocatable code */
|
#define RELOCATION /* generate relocatable code */
|
||||||
#define DEBUG 1
|
#define DEBUG 0
|
||||||
|
|
||||||
#undef valu_t
|
#undef valu_t
|
||||||
#define valu_t long
|
#define valu_t long
|
||||||
|
|
|
@ -105,7 +105,7 @@ instruction
|
||||||
}
|
}
|
||||||
| TRAPCC { T_EMIT2($1 | 4,0,0,0);}
|
| TRAPCC { T_EMIT2($1 | 4,0,0,0);}
|
||||||
| PACK '-' '(' AREG ')' ',' '-' '(' AREG ')' ',' imm
|
| PACK '-' '(' AREG ')' ',' '-' '(' AREG ')' ',' imm
|
||||||
{ T_EMIT2($1 | 1 | $4 | $9<<9, 0, 0, 0);
|
{ T_EMIT2($1 | 8 | $4 | $9<<9, 0, 0, 0);
|
||||||
ea_2(SIZE_W, 0);
|
ea_2(SIZE_W, 0);
|
||||||
}
|
}
|
||||||
| PACK DREG ',' DREG ',' imm
|
| PACK DREG ',' DREG ',' imm
|
||||||
|
|
Loading…
Reference in a new issue