diff options
| author | Rodrigo Alejandro Melo <rmelo@inti.gob.ar> | 2017-11-24 13:26:51 -0300 |
|---|---|---|
| committer | Rodrigo Alejandro Melo <rmelo@inti.gob.ar> | 2017-11-24 13:26:51 -0300 |
| commit | 508777e34fe7ff0a1580695a18924768dca0ab59 (patch) | |
| tree | 232affc48fecd4f37dbd7469fb2802e16ad145ce /examples | |
| parent | ab3cee7e5eb15445bb98dec362efb2f7ccaf6d27 (diff) | |
| download | vhdl2vl-508777e34fe7ff0a1580695a18924768dca0ab59.tar.gz vhdl2vl-508777e34fe7ff0a1580695a18924768dca0ab59.zip | |
Simplified iverilog check
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/ifchain2.vhd | 6 |
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 |

