Skip to content
Snippets Groups Projects
Commit 98938a2e authored by Grzegorz Daniluk's avatar Grzegorz Daniluk
Browse files

gc_sync_ffs: add constraints to prevent ISE from packing sync chain into shift reg

parent 5e59d69d
Branches
Tags
No related merge requests found
......@@ -58,6 +58,11 @@ end gc_sync_ffs;
architecture behavioral of gc_sync_ffs is
signal sync0, sync1, sync2 : std_logic;
attribute shreg_extract : string;
attribute shreg_extract of sync0 : signal is "no";
attribute shreg_extract of sync1 : signal is "no";
attribute shreg_extract of sync2 : signal is "no";
begin
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment