Created
July 13, 2017 07:18
-
-
Save sunriax/3f7edf9c9ee2522234373e661ba641ef to your computer and use it in GitHub Desktop.
VHDL synchron process with asynchron reset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- VHDL syncrhonous process with an asynchron reset | |
-- This is very important for the synthesis tool. | |
process(EN, clk) begin | |
-- Asynchron Reset | |
if(EN = '0') then | |
-- Synchron Process | |
elsif(rising_edge(CLK)) then | |
end if; | |
end process; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment