1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00
myhdl/example/manual/tb_rom.v

21 lines
183 B
Coq
Raw Normal View History

2008-11-22 22:40:25 +01:00
module tb_rom;
wire [7:0] dout;
reg [3:0] addr;
initial begin
$from_myhdl(
addr
);
$to_myhdl(
dout
);
end
rom dut(
dout,
addr
);
endmodule