Skip to content

Commit 3faab9c

Browse files
committed
1 parent b972678 commit 3faab9c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/SpinalHDL/Sequential logic/memory.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ Shown below are the VHDL definitions of the standard blackboxes used in SpinalHD
293293
wrMaskEnable : boolean;
294294
rdAddressWidth : integer;
295295
rdDataWidth : integer;
296-
rdEnEnable : boolean
296+
rdLatency : integer -- Cycles between the rd_en and the actual value on rd_data ports. It will be set to 1, unless the you added the MemReadBufferPhase to the SpinalConfig and the ram can merge a register on the read data path.
297297
);
298298
port(
299299
wr_clk : in std_logic;
@@ -304,6 +304,7 @@ Shown below are the VHDL definitions of the standard blackboxes used in SpinalHD
304304
rd_clk : in std_logic;
305305
rd_en : in std_logic;
306306
rd_addr : in unsigned;
307+
rd_dataEn : in std_logic; -- Only used if rdLatency > 1, drive the enable of rd_data flip flops
307308
rd_data : out std_logic_vector
308309
);
309310
end component;

0 commit comments

Comments
 (0)