Skip to content

Commit

Permalink
Move parameters to module declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
mmicko committed Apr 8, 2024
1 parent 3231c1c commit 91e41d8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 19 deletions.
20 changes: 11 additions & 9 deletions tests/memlib/memlib_9b1B.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
module RAM_9b1B (
module RAM_9b1B
#(
parameter INIT = 0,
parameter OPTION_INIT = "UNDEFINED",
parameter PORT_R_WIDTH = 9,
parameter PORT_W_WIDTH = 9,
parameter PORT_R_CLK_POL = 0,
parameter PORT_W_CLK_POL = 0,
parameter PORT_W_WR_EN_WIDTH = 1
)
(
input PORT_R_CLK,
input [6:0] PORT_R_ADDR,
output reg [PORT_R_WIDTH-1:0] PORT_R_RD_DATA,
Expand All @@ -8,14 +18,6 @@ module RAM_9b1B (
input [PORT_W_WIDTH-1:0] PORT_W_WR_DATA
);

parameter INIT = 0;
parameter OPTION_INIT = "UNDEFINED";
parameter PORT_R_WIDTH = 9;
parameter PORT_W_WIDTH = 9;
parameter PORT_R_CLK_POL = 0;
parameter PORT_W_CLK_POL = 0;
parameter PORT_W_WR_EN_WIDTH = 1;

reg [8:0] mem [0:15];

integer i;
Expand Down
16 changes: 8 additions & 8 deletions tests/memlib/memlib_wren.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
module RAM_WREN (
module RAM_WREN #(
parameter ABITS=4,
parameter WIDTH=8,
parameter PORT_A_WR_EN_WIDTH=1,
parameter PORT_A_WR_BE_WIDTH=0,
parameter OPTION_BYTESIZE=WIDTH,
parameter WB=OPTION_BYTESIZE
)(
input PORT_A_CLK,
input [ABITS-1:0] PORT_A_ADDR,
input [WIDTH-1:0] PORT_A_WR_DATA,
Expand All @@ -7,13 +14,6 @@ module RAM_WREN (
input [PORT_A_WR_BE_WIDTH-1:0] PORT_A_WR_BE
);

parameter ABITS=4;
parameter WIDTH=8;
parameter PORT_A_WR_EN_WIDTH=1;
parameter PORT_A_WR_BE_WIDTH=0;
parameter OPTION_BYTESIZE=WIDTH;
parameter WB=OPTION_BYTESIZE;

reg [WIDTH-1:0] mem [0:2**ABITS-1];

integer i;
Expand Down
6 changes: 4 additions & 2 deletions tests/memories/issue00335.v
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
// expect-rd-ports 1
// expect-rd-clk \clk

module ram2 (input clk,
module ram2 #(
parameter SIZE = 5 // Address size
) (input clk,
input sel,
input we,
input [SIZE-1:0] adr,
input [63:0] dat_i,
output reg [63:0] dat_o);
parameter SIZE = 5; // Address size


reg [63:0] mem [0:(1 << SIZE)-1];
integer i;
Expand Down

0 comments on commit 91e41d8

Please sign in to comment.