Added simulation timescale declaration
authorAndrew Zonenberg <azonenberg@drawersteak.com>
Sun, 8 May 2016 04:13:47 +0000 (21:13 -0700)
committerAndrew Zonenberg <azonenberg@drawersteak.com>
Sun, 8 May 2016 04:13:47 +0000 (21:13 -0700)
techlibs/greenpak4/cells_sim.v

index 6cf29fe6e51268ad411866ff1f22551b5071e99c..da3704638ec0a5e945c5ca8c80a10c2811da409a 100644 (file)
@@ -1,3 +1,5 @@
+`timescale 1ns/1ps;
+
 module GP_2LUT(input IN0, IN1, output OUT);
        parameter [3:0] INIT = 0;
        assign OUT = INIT[{IN1, IN0}];