File: timtst03.v

package info (click to toggle)
gplcver 2.12a-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 7,604 kB
  • ctags: 9,129
  • sloc: ansic: 126,201; sh: 1,539; makefile: 86; perl: 22
file content (15 lines) | stat: -rw-r--r-- 207 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
`timescale 10 ns / 1 ns 
module test;
 reg set;
 wire a, b, c;
 parameter p = 1.55;

 and #p i1(a, b, c);

 initial
  begin
   $monitor($realtime,,"set=", set);
   #p set = 0;
   #p set = 1;
  end
endmodule