Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
Fix build on scala 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
nxmq committed Aug 19, 2021
1 parent 8fb1b4f commit bbe94c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ private[firrtl] class RtlilEmitter extends SeqTransform with Emitter with Depend
}

case MemoryScalarInit(value) =>
for (addr <- (0 until depth.intValue())) {
for (addr <- (0 until depth.intValue)) {
initials ++= emit_cell(
i,
"$meminit_v2",
Expand Down

0 comments on commit bbe94c9

Please sign in to comment.