verilator/tests/basic/lint/example.sv
2024-12-04 22:55:09 -08:00

6 lines
89 B
Systemverilog

module example (
input bit a_i,
output bit b_o
);
assign b_o = a_i;
endmodule