1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00
myhdl/example/manual/tb_inc_comb.v
2008-11-22 22:40:25 +01:00

21 lines
211 B
Verilog

module tb_inc_comb;
wire [7:0] nextCount;
reg [7:0] count;
initial begin
$from_myhdl(
count
);
$to_myhdl(
nextCount
);
end
inc_comb dut(
nextCount,
count
);
endmodule