Skip to content

Commit

Permalink
[build system] align name of elaborator and omreader
Browse files Browse the repository at this point in the history
  • Loading branch information
sequencer committed Oct 17, 2024
1 parent 8dc0712 commit 0a9e02b
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import org.chipsalliance.t1.rtl.vrf.RamType.{p0rp1w, p0rw, p0rwp1rw}
import org.chipsalliance.t1.rtl.{T1Parameter, VFUInstantiateParameter}
import org.chipsalliance.t1.t1emu.TestBench

object Testbench extends SerializableModuleElaborator {
object TestBench extends SerializableModuleElaborator {
implicit object PathRead extends TokensReader.Simple[os.Path] {
def shortName = "path"
def read(strs: Seq[String]) = Right(os.Path(strs.head, os.pwd))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import org.chipsalliance.t1.t1rocketemu.TestBench
import org.chipsalliance.t1.tile.T1RocketTileParameter

// --instructionSets rv32_i --instructionSets rv_a --instructionSets rv_c --instructionSets rv_v --instructionSets Zve32x --instructionSets zvl1024b --cacheBlockBytes 32 --nPMPs 8 --cacheable 80000000-ffffffff --sideEffects 00000000-1fffffff --dcacheNSets 64 --dcacheNWays 4 --dcacheRowBits 32 --iCacheNSets 32 --iCacheNWays 4 --iCachePrefetch false --dLen 256 --vrfBankSize 2 --vrfRamType p0rp1w
object T1RocketTile extends SerializableModuleElaborator {
object TestBench extends SerializableModuleElaborator {
implicit object PathRead extends TokensReader.Simple[os.Path] {
def shortName = "path"
def read(strs: Seq[String]) = Right(os.Path(strs.head, os.pwd))
Expand Down
2 changes: 1 addition & 1 deletion omreader/src/t1emu/Testbench.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package org.chipsalliance.t1.omreader.t1emu
import mainargs._
import org.chipsalliance.t1.omreaderlib.t1emu.{TestBench => Lib}

object Testbench {
object TestBench {
implicit object PathRead extends TokensReader.Simple[os.Path] {
def shortName = "path"
def read(strs: Seq[String]): Either[String, os.Path] = Right(os.Path(strs.head, os.pwd))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package org.chipsalliance.t1.omreader.t1rocketemu
import mainargs._
import org.chipsalliance.t1.omreaderlib.t1rocketemu.{TestBench => Lib}

object Testbench {
object TestBench {
implicit object PathRead extends TokensReader.Simple[os.Path] {
def shortName = "path"
def read(strs: Seq[String]): Either[String, os.Path] = Right(os.Path(strs.head, os.pwd))
Expand Down

0 comments on commit 0a9e02b

Please sign in to comment.