Bitwise AND
This commit is contained in:
parent
0caf4fd9d0
commit
58f2f5007d
|
|
@ -165,6 +165,8 @@ static vhdl_expr *translate_binary(ivl_expr_t e)
|
|||
rhs->cast(&std_logic_vector), VHDL_BINOP_NEQ);
|
||||
else
|
||||
return translate_relation(lhs, rhs, VHDL_BINOP_NEQ);
|
||||
case '&': // Bitwise AND
|
||||
return translate_numeric(lhs, rhs, VHDL_BINOP_AND);
|
||||
case 'o':
|
||||
return translate_relation(lhs, rhs, VHDL_BINOP_OR);
|
||||
default:
|
||||
|
|
|
|||
Loading…
Reference in New Issue