hc99's picture
Add files using upload-large-folder tool
cb65407 verified
raw
history blame
245 Bytes
module testbench (
input logic clk,
input logic data_in,
output logic data_out
);
dut i_dut (
.clk (clk),
.data_in (data_in),
.data_out (data_out)
);
endmodule