summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorRodrigo Alejandro Melo <rmelo@inti.gob.ar>2017-11-24 13:26:51 -0300
committerRodrigo Alejandro Melo <rmelo@inti.gob.ar>2017-11-24 13:26:51 -0300
commit508777e34fe7ff0a1580695a18924768dca0ab59 (patch)
tree232affc48fecd4f37dbd7469fb2802e16ad145ce /examples
parentab3cee7e5eb15445bb98dec362efb2f7ccaf6d27 (diff)
downloadvhdl2vl-508777e34fe7ff0a1580695a18924768dca0ab59.tar.gz
vhdl2vl-508777e34fe7ff0a1580695a18924768dca0ab59.zip
Simplified iverilog check
Diffstat (limited to 'examples')
-rw-r--r--examples/ifchain2.vhd6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/ifchain2.vhd b/examples/ifchain2.vhd
index 837dace..b002568 100644
--- a/examples/ifchain2.vhd
+++ b/examples/ifchain2.vhd
@@ -2,14 +2,14 @@ LIBRARY IEEE;
USE IEEE.std_logic_1164.all;
USE IEEE.numeric_std.all;
-entity ifchain is port(
+entity ifchain2 is port(
clk, rstn : in std_logic;
enable: in std_logic;
result: out std_logic
);
-end ifchain;
+end ifchain2;
-architecture rtl of ifchain is
+architecture rtl of ifchain2 is
signal counter : unsigned(3 downto 0);
constant CLK_DIV_VAL : unsigned(3 downto 0) := to_unsigned(11,4);
begin
OpenPOWER on IntegriCloud