- changed directory path to iocells to use directories rather than dotted name

- Changed packages in tapeout/transforms/utils/*.scala to be in their own package `utils`
This commit is contained in:
chick
2021-02-09 14:12:57 -08:00
parent ca4013b830
commit e650d5ba22
6 changed files with 7 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
// See LICENSE for license details.
package barstools.tapeout.transforms
package barstools.tapeout.transforms.utils
import chisel3.experimental.{annotate, ChiselAnnotation}
import chisel3.experimental.{ChiselAnnotation, annotate}
import firrtl._
import firrtl.annotations._
import firrtl.stage.Forms

View File

@@ -1,4 +1,4 @@
package barstools.tapeout.transforms
package barstools.tapeout.transforms.utils
object LowerName {
def apply(s: String): String = s.replace(".", "_").replace("[", "_").replace("]", "")

View File

@@ -1,6 +1,7 @@
package barstools.tapeout.transforms
package barstools.tapeout.transforms.utils
import chisel3._
import scala.collection.immutable.ListMap
class CustomBundle[T <: Data](elts: (String, T)*) extends Record {

View File

@@ -1,6 +1,7 @@
package barstools.tapeout.transforms
package barstools.tapeout.transforms.utils
import net.jcazevedo.moultingyaml._
import java.io.File
class YamlFileReader(resource: String) {