Added GLITCH_FILTER parameter to GP_DELAY
authorAndrew Zonenberg <azonenberg@drawersteak.com>
Wed, 19 Oct 2016 02:53:19 +0000 (19:53 -0700)
committerAndrew Zonenberg <azonenberg@drawersteak.com>
Wed, 19 Oct 2016 02:53:19 +0000 (19:53 -0700)
techlibs/greenpak4/cells_sim.v

index 8a1794fc16df1fcb455315a1274e1704750ac3b7..668c69829e406c10c505bcf170f07a965b26f26a 100644 (file)
@@ -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