You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
265 B
Verilog
15 lines
265 B
Verilog
2 years ago
|
(* blackbox *)
|
||
|
module RAM64X1D #(
|
||
|
parameter [63:0] INIT = 64'h0
|
||
|
)
|
||
|
(
|
||
|
input WCLK,
|
||
|
input WE,
|
||
|
input A0, A1, A2, A3, A4, A5,
|
||
|
input DPRA0, DPRA1, DPRA2, DPRA3, DPRA4, DPRA5,
|
||
|
input D,
|
||
|
output SPO,
|
||
|
output DPO
|
||
|
);
|
||
|
endmodule
|