Xilinx BRAM Init VHDL formats

B

Brad Smallridge

Guest
Hello,

What other formats are available for intitializing Xilinx BRAMs?

The library guide only shows this:

INIT_00 : bit_vector(255 downto 0) :=
X"0000000000000000000000000000000000000000000000000000000000000000";

Which is a Hexadecimal, right to left format.

Thanks,

Brad Smallridge
 
Brad Smallridge wrote:
Hello,

What other formats are available for intitializing Xilinx BRAMs?

The library guide only shows this:

INIT_00 : bit_vector(255 downto 0) :=

X"0000000000000000000000000000000000000000000000000000000000000000";

Which is a Hexadecimal, right to left format.

Thanks,

Brad Smallridge
INIT_00 : bit_vector(255 downto 0) := (others=>'0');

Weng
 

Welcome to EDABoard.com

Sponsor

Back
Top