axi_dacfifo: Add missing read-enable signal to ad_mem instance

Commit bfc8ec28c3 ("util_axis_fifo: instantiate block ram in async mode")
added the read-enable (reb) signal to the ad_mem block.

It didn't update the ad_mem instance in axi_dacfifo_address_buffer.v. This
results in the read-enable of the address_buffer being tied to 0.

Fix this by connecting the same signal that increments the read address.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
main
Lars-Peter Clausen 2018-05-30 10:21:35 +02:00 committed by Lars-Peter Clausen
parent ec8db3ee5b
commit 7f18fc5f1c
1 changed files with 1 additions and 0 deletions

View File

@ -71,6 +71,7 @@ module axi_dacfifo_address_buffer #(
.addra (waddr),
.dina (din),
.clkb (clk),
.reb (rea),
.addrb (raddr),
.doutb (dout));