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
parent
d5422c2ecc
commit
6197563506
|
@ -110,11 +110,11 @@ module up_axi (
|
||||||
// pcore interface
|
// pcore interface
|
||||||
|
|
||||||
output up_wreq;
|
output up_wreq;
|
||||||
output [13:0] up_waddr;
|
output [AW:0] up_waddr;
|
||||||
output [31:0] up_wdata;
|
output [31:0] up_wdata;
|
||||||
input up_wack;
|
input up_wack;
|
||||||
output up_rreq;
|
output up_rreq;
|
||||||
output [13:0] up_raddr;
|
output [AW:0] up_raddr;
|
||||||
input [31:0] up_rdata;
|
input [31:0] up_rdata;
|
||||||
input up_rack;
|
input up_rack;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue