Files
iverilog/ivtest/ivltests/vhdl_org_stdlogic.vhd
T
Stephen Williams cea237b407 Add ivtest to the iverilog source tree
By adding ivtest to the iverilog source tree, it is easier to keep
the regression test synchronized with the source that is being tested.
This should be especially helpful for PRs that add a new feature, and
have a matching ivtest PR with the regression test for that feature.
2022-01-15 10:18:50 -08:00

17 lines
291 B
VHDL

library IEEE;
use IEEE.std_logic_1164.all;
entity or_gate is
port (
a_i : in std_logic; -- inputs
b_i : in std_logic;
c_o : out std_logic -- output
);
end entity or_gate;
architecture rtl of or_gate is
begin
c_o <= a_i or b_i;
end architecture rtl;