Added simulation timescale declaration

This commit is contained in:
Andrew Zonenberg 2016-05-07 21:13:47 -07:00
parent f103bfb9ba
commit a0c19aae55
1 changed files with 2 additions and 0 deletions

View 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}];