zynq-sandbox

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

commit e4436d66cd11e9aa7feec3c9feb6722daeba86a8
parent 305ecdc23c8e4fd7df9011312fb1b4f122a4c38a
Author: Brian Swetland <swetland@frotz.net>
Date:   Thu,  3 Jul 2014 23:00:44 -0700

axi_ifc: size is 2bits for axi3, not 1

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

diff --git a/hdl/axi_ifc.sv b/hdl/axi_ifc.sv @@ -23,7 +23,7 @@ parameter AXI3 = 0; localparam LENMAX = AXI3 ? 3 : 7; localparam LOCKMAX = AXI3 ? 1 : 0; -localparam SIZEMAX = AXI3 ? 1 : 0; +localparam SIZEMAX = AXI3 ? 1 : 2; logic [IWIDTH-1:0] awid; logic [AWIDTH-1:0] awaddr;