Update deprecated APIs to prepare for Chisel 5

- `IO` was moved from `chisel3.experimental` to `chisel3`
- `DataMirror` was moved from `chisel3.experimental` to `chisel3.reflect`
This commit is contained in:
Tynan McAuley
2024-01-03 11:00:46 -08:00
parent 32b329bb57
commit 16b56379aa

View File

@@ -3,8 +3,9 @@
package barstools.iocell.chisel
import chisel3._
import chisel3.util.{Cat, HasBlackBoxResource, HasBlackBoxInline}
import chisel3.experimental.{Analog, BaseModule, DataMirror, IO}
import chisel3.util.{Cat, HasBlackBoxInline}
import chisel3.reflect.DataMirror
import chisel3.experimental.{Analog, BaseModule}
// The following four IO cell bundle types are bare-minimum functional connections
// for modeling 4 different IO cell scenarios. The intention is that the user