aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/greenpak4
diff options
context:
space:
mode:
authorAndrew Zonenberg <azonenberg@drawersteak.com>2016-10-18 19:53:19 -0700
committerAndrew Zonenberg <azonenberg@drawersteak.com>2016-10-18 19:53:19 -0700
commit091d32b563ecdd9e5a3377811fdd2411dc9fd1bc (patch)
treecef80f02f8b8e51ae48d26cac2a88e1576c32508 /techlibs/greenpak4
parenta818472f0c1a5baa8fb6ba6f4b9a4340058e3616 (diff)
downloadyosys-091d32b563ecdd9e5a3377811fdd2411dc9fd1bc.tar.gz
yosys-091d32b563ecdd9e5a3377811fdd2411dc9fd1bc.tar.bz2
yosys-091d32b563ecdd9e5a3377811fdd2411dc9fd1bc.zip
Added GLITCH_FILTER parameter to GP_DELAY
Diffstat (limited to 'techlibs/greenpak4')
-rw-r--r--techlibs/greenpak4/cells_sim.v5
1 files changed, 2 insertions, 3 deletions
diff --git a/techlibs/greenpak4/cells_sim.v b/techlibs/greenpak4/cells_sim.v
index 8a1794fc1..668c69829 100644
--- a/techlibs/greenpak4/cells_sim.v
+++ b/techlibs/greenpak4/cells_sim.v
@@ -131,9 +131,8 @@ endmodule
module GP_DELAY(input IN, output reg OUT);
parameter DELAY_STEPS = 1;
-
- //TODO: additional delay/glitch filter mode
-
+ parameter GLITCH_FILTER = 0;
+
initial OUT = 0;
generate