Skip to content

Commit

Permalink
specific wire size on parameteR
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldushouyu authored and dpretet committed Apr 17, 2024
1 parent 804806c commit fa6f6a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rtl/rptr_empty.v
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module rptr_empty

#(
parameter ADDRSIZE = 4,
parameter AREMPTYSIZE = 1
parameter [ADDRSIZE:0]AREMPTYSIZE = 1
)(
input wire rclk,
input wire rrst_n,
Expand Down
2 changes: 1 addition & 1 deletion rtl/wptr_full.v
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module wptr_full

#(
parameter ADDRSIZE = 4,
parameter AWFULLSIZE = 1
parameter [ADDRSIZE:0]AWFULLSIZE = 1
)(
input wire wclk,
input wire wrst_n,
Expand Down

0 comments on commit fa6f6a0

Please sign in to comment.