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

This commit is contained in:
dalance 2025-05-21 14:52:57 +09:00
parent 09437280b3
commit 3a804d7b3c
No known key found for this signature in database
GPG key ID: A2C0705DA1D395E2

View file

@ -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 #(