module Caravel_RAM_24KB ( | |
`ifdef USE_POWER_PINS | |
VPWR, | |
VGND, | |
`endif | |
CLK, | |
WE, | |
EN, | |
Di, | |
Do, | |
A | |
); | |
`ifdef USE_POWER_PINS | |
input VPWR; | |
input VGND; | |
`endif | |
input CLK; | |
input [3:0] WE; | |
input EN; | |
input [31:0] Di; | |
output [31:0] Do; | |
input [12:0] A; | |
RAM_6Kx32 RAM0 ( | |
`ifdef USE_POWER_PINS | |
.VPWR(VPWR), | |
.VGND(VGND), | |
`endif | |
.CLK(CLK), | |
.WE(WE), | |
.EN(EN), | |
.Di(Di), | |
.Do(Do), | |
.A(A) | |
); | |
endmodule |