Open Kooscii opened 6 years ago
result : out STD_LOGIC_VECTOR (31 downto 0); eq : out STD_LOGIC; lt : out STD_LOGIC; op1 : in STD_LOGIC_VECTOR (31 downto 0); op2 : in STD_LOGIC_VECTOR (31 downto 0); funct : in STD_LOGIC_VECTOR (2 downto 0));
HIGH
op1 == op2
LOW
op1 < op2
result = op1 + op2
result = op1 - op2
result = op1 & op2
result = op1 | op2
result = !(op1 | op2)
result = op1 << op2
result = op1 >> op2
luny0303
HIGH
whenop1 == op2
, otherwiseLOW
.HIGH
whenop1 < op2
, otherwiseLOW
.result = op1 + op2
result = op1 - op2
result = op1 & op2
result = op1 | op2
result = !(op1 | op2)
result = op1 << op2
result = op1 >> op2
Progress