You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.
@struct case class comp_acdc(index: UInt8,
dc: UInt8,
ac: UInt8
)
...
val ac_dram = DRAM[UInt8](64)
...
val sram = SRAM[comp_acdc](64)
...
ac_dram store sram.ac
The text was updated successfully, but these errors were encountered:
The proposed syntax for this is a bit strange - sram doesn't have an ac field, only its individual elements do. We could potentially create a view of the SRAM using something like sram.map(_.ac).
This is just a thing that would be nice to have:
The text was updated successfully, but these errors were encountered: