mirror of
https://github.com/myhdl/myhdl.git
synced 2024-12-14 07:44:38 +08:00
21 lines
183 B
Coq
21 lines
183 B
Coq
|
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
|