fixed a warning in counter VHDL template

This commit is contained in:
hneemann 2017-11-15 20:18:09 +01:00
parent c611dfb0cf
commit b685d42ee5

View File

@ -14,7 +14,7 @@ end DIG_Counter;
architecture DIG_Counter_arch of DIG_Counter is
signal count : {{data}} := {{zero}};
begin
process (PORT_C, PORT_clr)
process (PORT_C, PORT_clr, PORT_en)
begin
if PORT_clr='1' then
count <= {{zero}};