axi_dacfifo: Fix address buffer read logic

The FIFO in the address buffer should work in first-word fall-through mode.
To achieve this the read enable of the memory must be always 1.
main
Istvan Csomortani 2018-06-12 16:35:21 +01:00
parent aba355b4ce
commit a8330402d2
1 changed files with 1 additions and 1 deletions

View File

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