Guest
hi
For synchronous RAM (for example, BRAM in xilinx) and signal a,b,c
MEM: RAMB16_S16
port map (we=>write_enable, rw =>read_write,.........)
I am curious if there is a way doing
a = MEM(0) -- assignment of value in address 0 to signal a
b = MEM(0) -- assignment of value in address 0 to signal b
c = MEM(0) -- assignment of value in address 0 to signal c
.... like this, so that memory values quickly assigned to signal ...
Or should always we use control signals (for example, write_enable,
read_write)?
For synchronous RAM (for example, BRAM in xilinx) and signal a,b,c
MEM: RAMB16_S16
port map (we=>write_enable, rw =>read_write,.........)
I am curious if there is a way doing
a = MEM(0) -- assignment of value in address 0 to signal a
b = MEM(0) -- assignment of value in address 0 to signal b
c = MEM(0) -- assignment of value in address 0 to signal c
.... like this, so that memory values quickly assigned to signal ...
Or should always we use control signals (for example, write_enable,
read_write)?