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
parent
aba355b4ce
commit
a8330402d2
|
@ -71,7 +71,7 @@ module axi_dacfifo_address_buffer #(
|
|||
.addra (waddr),
|
||||
.dina (din),
|
||||
.clkb (clk),
|
||||
.reb (rea),
|
||||
.reb (1'b1),
|
||||
.addrb (raddr),
|
||||
.doutb (dout));
|
||||
|
||||
|
|
Loading…
Reference in New Issue