Skip to content

Commit 5be2cdb

Browse files
committed
bump
1 parent 944b0fb commit 5be2cdb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ lazy val chiselv = (project in file("."))
2727

2828
// Default library versions
2929
val defaultVersions = Map(
30-
"chisel3" -> "3.5.0-RC1",
30+
"chisel3" -> "3.5.0-RC2",
3131
"chiseltest" -> "0.5-SNAPSHOT",
3232
"scalatest" -> "3.2.10",
3333
"organize-imports" -> "0.5.0",

src/main/scala/MemoryIOManager.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ class MemoryIOManager(bitWidth: Int = 32, clockFreq: Long, sizeBytes: Long = 102
9191
// Dummy output - (0x0000_1000)
9292
when(readAddress(11, 0) === 0x0L.U)(dataOut := 0xbaad_cafeL.U)
9393
// Clock frequency - (0x0000_1008)
94-
when(readAddress(11, 0) === 0x8L.U)(dataOut := clockFreq.asUInt())
94+
when(readAddress(11, 0) === 0x8L.U)(dataOut := clockFreq.asUInt)
9595
// Has UART0 - (0x0000_1010)
9696
when(readAddress(11, 0) === 0x10L.U)(dataOut := 1.U)
9797
// Has GPIO0 - (0x0000_1018)
@@ -101,7 +101,7 @@ class MemoryIOManager(bitWidth: Int = 32, clockFreq: Long, sizeBytes: Long = 102
101101
// Has Timer0 - (0x0000_1024)
102102
when(readAddress(11, 0) === 0x24L.U)(dataOut := 1.U)
103103
// Num GPIOs in GPIO0 - (0x0000_1028)
104-
when(readAddress(11, 0) === 0x28L.U)(dataOut := numGPIO0.asUInt())
104+
when(readAddress(11, 0) === 0x28L.U)(dataOut := numGPIO0.asUInt)
105105

106106
}
107107

0 commit comments

Comments
 (0)