13 lines
259 B
Coq
13 lines
259 B
Coq
|
|
module top;
|
||
|
|
wire net;
|
||
|
|
|
||
|
|
assign (pull1, strong0) net = 1'b1;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
#1;
|
||
|
|
// You can get the correct result by uncommenting the following line.
|
||
|
|
// $display("The value is: %b.", net);
|
||
|
|
$display("The strength is: %v:", net);
|
||
|
|
end
|
||
|
|
endmodule
|