Hi,
I am new to chipyard. I did FPGA prototyping of MegaBoom core on VCU118. As suggested in Chipyard documentation:
class BoomVCU118Config extends Config(
new WithFPGAFrequency(50) ++
new WithVCU118Tweaks ++
new chipyard.MegaBoomConfig)
This works fine. However, I want add CVA6 place of MegaBoom.
I tried:
class BoomVCU118Config extends Config(
new WithFPGAFrequency(50) ++
new WithVCU118Tweaks ++
new cva6.WithNCVA6Cores(1))
But this config gives an error. I would be really grateful if you guide me here.
Thanks in advance.