From 6197563506bcc9e0878fc783ded019fcaba7e92d Mon Sep 17 00:00:00 2001 From: Lars-Peter Clausen Date: Mon, 1 Dec 2014 13:05:58 +0100 Subject: [PATCH] up_axi: Fix up_raddr/up_waddr port width Make sure that the port declaration width matches with the reg declaration later on. Signed-off-by: Lars-Peter Clausen --- library/common/up_axi.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/common/up_axi.v b/library/common/up_axi.v index e06c47e2b..b2a12bf9a 100644 --- a/library/common/up_axi.v +++ b/library/common/up_axi.v @@ -110,11 +110,11 @@ module up_axi ( // pcore interface output up_wreq; - output [13:0] up_waddr; + output [AW:0] up_waddr; output [31:0] up_wdata; input up_wack; output up_rreq; - output [13:0] up_raddr; + output [AW:0] up_raddr; input [31:0] up_rdata; input up_rack;