Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-006
/
slot-002
/
cbea1106f28fbf1b9d372c03bac348b8789e8e2b
/
.
/
verilog
/
rtl
/
wrapper
/
RAM512.v
blob: 7378b9c74bff8812626f22766d2cc5181851d0f2 [
file
] [
log
] [
blame
]
module
RAM512
#(
parameter BITS
=
9
,
)
(
`ifdef USE_POWER_PINS
inout VPWR,
inout VGND,
`
endif
input CLK
,
input
[
7
:
0
]
WE0
,
input EN0
,
input
[
63
:
0
]
Di0
,
output reg
[
63
:
0
]
Do0
,
input
[
BITS
-
1
:
0
]
A0
);
endmodule