mirror of
https://github.com/veryl-lang/veryl.git
synced 2025-08-04 18:48:00 +00:00
Fix typo
Some checks failed
CodSpeed / Run benchmarks (push) Waiting to run
Deploy / std (push) Waiting to run
Deploy / deploy (push) Blocked by required conditions
Deploy / deploy-nightly (push) Blocked by required conditions
Regression / std (push) Failing after 4s
Check dependencies / Check dependencies (push) Has been cancelled
Regression / build (macOS-latest, stable, x86_64-apple-darwin) (push) Has been cancelled
Regression / build (ubuntu-latest, stable, x86_64-unknown-linux-gnu) (push) Has been cancelled
Regression / build (windows-latest, stable, x86_64-pc-windows-msvc) (push) Has been cancelled
Regression / gen_sv (push) Has been cancelled
Regression / rustfmt (push) Has been cancelled
Regression / clippy (push) Has been cancelled
Some checks failed
CodSpeed / Run benchmarks (push) Waiting to run
Deploy / std (push) Waiting to run
Deploy / deploy (push) Blocked by required conditions
Deploy / deploy-nightly (push) Blocked by required conditions
Regression / std (push) Failing after 4s
Check dependencies / Check dependencies (push) Has been cancelled
Regression / build (macOS-latest, stable, x86_64-apple-darwin) (push) Has been cancelled
Regression / build (ubuntu-latest, stable, x86_64-unknown-linux-gnu) (push) Has been cancelled
Regression / build (windows-latest, stable, x86_64-pc-windows-msvc) (push) Has been cancelled
Regression / gen_sv (push) Has been cancelled
Regression / rustfmt (push) Has been cancelled
Regression / clippy (push) Has been cancelled
This commit is contained in:
parent
09437280b3
commit
3a804d7b3c
1 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ pub module slicer #(
|
|||
param ASCENDING_ORDER: bool = true ,
|
||||
param FULL_BANDWIDTH : bool = true ,
|
||||
param DISABLE_MBFF : bool = false ,
|
||||
param UES_RESET : bool = false ,
|
||||
param USE_RESET : bool = false ,
|
||||
) (
|
||||
i_clk : input clock,
|
||||
i_rst : input reset,
|
||||
|
@ -36,7 +36,7 @@ pub module slicer #(
|
|||
}
|
||||
|
||||
for i in 0..STAGES :g {
|
||||
const RESET: bool = UES_RESET && (i == (STAGES - 1));
|
||||
const RESET: bool = USE_RESET && (i == (STAGES - 1));
|
||||
|
||||
if FULL_BANDWIDTH :g {
|
||||
inst u_slicer: slicer_unit_fb #(
|
||||
|
@ -84,7 +84,7 @@ pub module slicer #(
|
|||
}
|
||||
|
||||
for i in 0..STAGES :g {
|
||||
const RESET: bool = UES_RESET && (i == 0);
|
||||
const RESET: bool = USE_RESET && (i == 0);
|
||||
|
||||
if FULL_BANDWIDTH :g {
|
||||
inst u_slicer: slicer_unit_fb #(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue