Skip to content

Instantly share code, notes, and snippets.

@sunriax
Created July 13, 2017 07:18
Show Gist options
  • Save sunriax/3f7edf9c9ee2522234373e661ba641ef to your computer and use it in GitHub Desktop.
Save sunriax/3f7edf9c9ee2522234373e661ba641ef to your computer and use it in GitHub Desktop.
VHDL synchron process with asynchron reset
-- 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