Skip to content

Commit

Permalink
Set TLRAM setName based on devName
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryz123 committed May 1, 2024
1 parent cc1395b commit 0b556a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/tilelink/SRAM.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class TLRAM(
supportsPutFull = TransferSizes(1, beatBytes),
supportsArithmetic = if (atomics) TransferSizes(1, beatBytes) else TransferSizes.none,
supportsLogical = if (atomics) TransferSizes(1, beatBytes) else TransferSizes.none,
fifoId = Some(0))), // requests are handled in order
fifoId = Some(0)).v2copy(name=devName)), // requests are handled in order
beatBytes = beatBytes,
minLatency = 1))) // no bypass needed for this device

Expand Down

0 comments on commit 0b556a1

Please sign in to comment.