Rename FFTGenerator package to fftgenerator

This commit is contained in:
Animesh Agrawal
2022-01-04 00:09:47 -08:00
parent fab88150f3
commit b9820a521c
2 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ class DigitalTop(implicit p: Parameters) extends ChipyardSystem
with chipyard.example.CanHavePeripheryStreamingPassthrough // Enables optionally adding the DSPTools streaming-passthrough example widget
with nvidia.blocks.dla.CanHavePeripheryNVDLA // Enables optionally having an NVDLA
with chipyard.clocking.HasChipyardPRCI // Use Chipyard reset/clock distribution
with FFTGenerator.HasPeripheryFFT
with fftgenerator.CanHavePeripheryFFT
{
override lazy val module = new DigitalTopModule(this)
}

View File

@@ -22,9 +22,9 @@ class TinyRocketConfig extends Config(
new chipyard.config.AbstractConfig)
class RocketWithFFT extends Config(
new FFTGenerator.WithFFTNumPoints(8) ++
new FFTGenerator.WithFFTBaseAddr(0x2000) ++
new FFTGenerator.WithFFTGenerator ++
new fftgenerator.WithFFTNumPoints(8) ++
new fftgenerator.WithFFTBaseAddr(0x2000) ++
new fftgenerator.WithFFTGenerator ++
new RocketConfig)
class HwachaRocketConfig extends Config(