1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00
oh/stubs/hdl/memory_dp_48x4096.v

29 lines
419 B
Coq
Raw Normal View History

module memory_dp_48x4096 (/*AUTOARG*/
// Outputs
doutb,
// Inputs
clka, ena, wea, addra, dina, clkb, enb, addrb
);
//write
input clka;
input ena;
input [5:0] wea;
input [11:0] addra;
input [47:0] dina;
//read
input clkb;
input enb;
input [11:0] addrb;
output [47:0] doutb;
assign doutb[47:0]=48'b0;
endmodule // memory_dp_48x4096