Add XNOR binary operand
This commit is contained in:
parent
f86f454956
commit
4cbec1c817
|
|
@ -302,6 +302,9 @@ static vhdl_expr *translate_binary(ivl_expr_t e)
|
||||||
case 'O': // Bitwise NOR
|
case 'O': // Bitwise NOR
|
||||||
result = translate_numeric(lhs, rhs, VHDL_BINOP_NOR);
|
result = translate_numeric(lhs, rhs, VHDL_BINOP_NOR);
|
||||||
break;
|
break;
|
||||||
|
case 'X': // Bitwise XNOR
|
||||||
|
result = translate_numeric(lhs, rhs, VHDL_BINOP_XNOR);
|
||||||
|
break;
|
||||||
case '|': // Bitwise OR
|
case '|': // Bitwise OR
|
||||||
result = translate_numeric(lhs, rhs, VHDL_BINOP_OR);
|
result = translate_numeric(lhs, rhs, VHDL_BINOP_OR);
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue