diff options
Diffstat (limited to 'testsuite/pyunit/libghdl/simpleEntity.vhdl')
-rw-r--r-- | testsuite/pyunit/libghdl/simpleEntity.vhdl | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/testsuite/pyunit/libghdl/simpleEntity.vhdl b/testsuite/pyunit/libghdl/simpleEntity.vhdl deleted file mode 100644 index a26a6357c..000000000 --- a/testsuite/pyunit/libghdl/simpleEntity.vhdl +++ /dev/null @@ -1,27 +0,0 @@ -library ieee; -use ieee.numeric_std.all; - -entity e1 is - generic ( - BITS : positive := 8 - ); - port ( - Clock: in std_logic; - Reset: in std_logic; - Q: out std_logic_vector(BITS - 1 downto 0) - ); -end entity e1; - -architecture behav of e1 is -begin - process(Clock) - begin - if rising_edge(Clock) then - if Reset = '1' then - Q <= (others => '0'); - else - Q <= std_logic_vector(unsigned(Q) + 1); - end if; - end if; - end process; -end architecture behav; |