-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test #1
base: master
Are you sure you want to change the base?
test #1
Conversation
// Shuffle / Unshuffle // | ||
///////////////////////// | ||
|
||
localparam logic [31:0] SHUFFLE_MASK_L [4] = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-lint] reported by reviewdog 🐶
Non-type localparam names must be styled with CamelCase [Style: constants] [parameter-name-style]
|
||
localparam logic [31:0] SHUFFLE_MASK_L [4] = | ||
'{32'h00ff_0000, 32'h0f00_0f00, 32'h3030_3030, 32'h4444_4444}; | ||
localparam logic [31:0] SHUFFLE_MASK_R [4] = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-lint] reported by reviewdog 🐶
Non-type localparam names must be styled with CamelCase [Style: constants] [parameter-name-style]
localparam logic [31:0] SHUFFLE_MASK_R [4] = | ||
'{32'h0000_ff00, 32'h00f0_00f0, 32'h0c0c_0c0c, 32'h2222_2222}; | ||
|
||
localparam logic [31:0] FLIP_MASK_L [4] = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-lint] reported by reviewdog 🐶
Non-type localparam names must be styled with CamelCase [Style: constants] [parameter-name-style]
|
||
localparam logic [31:0] FLIP_MASK_L [4] = | ||
'{32'h2200_1100, 32'h0044_0000, 32'h4411_0000, 32'h1100_0000}; | ||
localparam logic [31:0] FLIP_MASK_R [4] = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-lint] reported by reviewdog 🐶
Non-type localparam names must be styled with CamelCase [Style: constants] [parameter-name-style]
assign clmul_hmode = operator_i == ALU_CLMULH; | ||
|
||
// CRC | ||
localparam logic [31:0] CRC32_POLYNOMIAL = 32'h04c1_1db7; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-lint] reported by reviewdog 🐶
Non-type localparam names must be styled with CamelCase [Style: constants] [parameter-name-style]
|
||
// CRC | ||
localparam logic [31:0] CRC32_POLYNOMIAL = 32'h04c1_1db7; | ||
localparam logic [31:0] CRC32_MU_REV = 32'hf701_1641; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-lint] reported by reviewdog 🐶
Non-type localparam names must be styled with CamelCase [Style: constants] [parameter-name-style]
localparam logic [31:0] CRC32_POLYNOMIAL = 32'h04c1_1db7; | ||
localparam logic [31:0] CRC32_MU_REV = 32'hf701_1641; | ||
|
||
localparam logic [31:0] CRC32C_POLYNOMIAL = 32'h1edc_6f41; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-lint] reported by reviewdog 🐶
Non-type localparam names must be styled with CamelCase [Style: constants] [parameter-name-style]
localparam logic [31:0] CRC32_MU_REV = 32'hf701_1641; | ||
|
||
localparam logic [31:0] CRC32C_POLYNOMIAL = 32'h1edc_6f41; | ||
localparam logic [31:0] CRC32C_MU_REV = 32'hdea7_13f1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-lint] reported by reviewdog 🐶
Non-type localparam names must be styled with CamelCase [Style: constants] [parameter-name-style]
No description provided.