1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00
2003-04-24 19:24:37 +00:00

17 lines
291 B
Verilog

module dut_inc;
reg enable;
reg clock;
reg reset;
wire [15:0] count;
initial begin
$from_myhdl(enable, clock, reset);
$to_myhdl(count);
end
inc dut (.count(count), .enable(enable), .clock(clock), .reset(reset));
defparam dut.n= `n;
endmodule // inc