initializing AXIL instances defined as unpacked SystemVerilog #100
Unanswered
jhuryszblvt
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My default way to initialize a new AXIL Master is the following:
axil_master = AxiLiteMaster(AxiLiteBus.from_prefix(dut, "axil_if"), dut.clk, dut.rst)However, let's say I have axil_if declared as:
logic axil_if_(signal)[5];
Is their a way to create 5 unique instances of axil_master_<0-5>, without breaking apart the signal declaration into seperate declarations? i.e axil_if_0, axil_if_1 etc.
Beta Was this translation helpful? Give feedback.
All reactions