File size: 297 Bytes
cb65407 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | // This file is public domain, it can be freely copied without restrictions.
// SPDX-License-Identifier: CC0-1.0
module my_design(input logic clk);
timeunit 1ns;
timeprecision 1ns;
logic my_signal_1;
logic my_signal_2;
assign my_signal_1 = 1'bx;
assign my_signal_2 = 0;
endmodule
|