blob: ba7edbb1d51e91006a62c12d960bc0b7411e0a1b [file] [log] [blame]
// Sample Code
module main( stb, a );
input stb;
output [1:0] a;
wire [1:0] b;
buf (a[0], b[0]);
buf (a[1], b[1]);
specify
(posedge stb => (a[0]:1'bx)) = 1.0;
(posedge stb => (a[1]:1'bx)) = 1.0;
endspecify
endmodule // main