zynq-sandbox

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit bb021dbe906789348cb45640b55113b826266adc
parent 1e47ff51029e8e88b64a4caecd76b5e8c4cb8806
Author: Brian Swetland <swetland@frotz.net>
Date:   Sun, 27 Jul 2014 23:35:38 -0700

eth-capture: honor BASE_ADDR parameter

Diffstat:
Mhdl/eth_capture.sv | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hdl/eth_capture.sv b/hdl/eth_capture.sv @@ -208,7 +208,7 @@ xilinx_async_fifo #( .o_active(cfifo_active) ); -reg [31:0]dma_base = 32'h10000000; +reg [31:0]dma_base = BASE_ADDR; wire [31:0]dma_addr = { dma_base[31:22], cfifo_data[15:0], 6'd0 }; wire [3:0]dma_len = cfifo_data[19:16];