mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-08 12:23:32 +02:00
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.
31 lines
557 B
VHDL
31 lines
557 B
VHDL
|
|
library ieee;
|
|
use ieee.std_logic_1164.all;
|
|
use ieee.numeric_std.all;
|
|
use work.work14_pkg.all;
|
|
|
|
entity work14_comp is
|
|
|
|
generic (
|
|
max_out_val : natural := 3;
|
|
sample_parm : string := "test");
|
|
|
|
port (
|
|
clk_i : in std_logic;
|
|
val : out std_logic_vector(f_log2_size(max_out_val)-1 downto 0));
|
|
|
|
end work14_comp;
|
|
|
|
architecture rtl of work14_comp is
|
|
|
|
begin -- rtl
|
|
|
|
foo : process(clk_i)
|
|
begin
|
|
if rising_edge(clk_i) then
|
|
val <= std_logic_vector(to_unsigned(max_out_val, val'length));
|
|
end if;
|
|
end process;
|
|
|
|
end rtl;
|