mirror of
https://github.com/myhdl/myhdl.git
synced 2025-01-24 21:52:56 +08:00
21 lines
211 B
Coq
21 lines
211 B
Coq
|
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
|