drop timeunit and timescale (closes #31)

This commit is contained in:
Zachary Snow
2019-09-11 21:44:57 -04:00
parent 295ac64929
commit 6ddf782383
5 changed files with 42 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
`timescale 1ns / 10ps
timeunit 100ps;
timeprecision 1ps;
module top_1;
`timescale 1ns / 10ps
timeunit 1ps;
timeprecision 1ps;
endmodule
module top_2;
timeunit 100ps / 10fs;
endmodule
module top_3;
timeunit 10.0ps / 10fs;
endmodule
module top_4;
timeunit 100ps;
timeprecision 10fs;
endmodule
module top;
initial $display("Hello!");
endmodule
+3
View File
@@ -0,0 +1,3 @@
module top;
initial $display("Hello!");
endmodule