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 <lars@metafoo.de>
main
Lars-Peter Clausen 2014-12-01 13:05:58 +01:00
parent d5422c2ecc
commit 6197563506
1 changed files with 2 additions and 2 deletions

View File

@ -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;