Add XNOR binary operand

This commit is contained in:
Nick Gasson 2008-08-06 11:18:01 +01:00
parent f86f454956
commit 4cbec1c817
1 changed files with 3 additions and 0 deletions

View File

@ -302,6 +302,9 @@ static vhdl_expr *translate_binary(ivl_expr_t e)
case 'O': // Bitwise NOR
result = translate_numeric(lhs, rhs, VHDL_BINOP_NOR);
break;
case 'X': // Bitwise XNOR
result = translate_numeric(lhs, rhs, VHDL_BINOP_XNOR);
break;
case '|': // Bitwise OR
result = translate_numeric(lhs, rhs, VHDL_BINOP_OR);
break;