Files

5 lines
72 B
Systemverilog
Raw Permalink Normal View History

2021-07-27 17:20:09 -04:00
module mod(output x, y);
initial x = 1;
assign y = 1;
endmodule