aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala
diff options
context:
space:
mode:
authorchick2020-08-14 19:47:53 -0700
committerJack Koenig2020-08-14 19:47:53 -0700
commit6fc742bfaf5ee508a34189400a1a7dbffe3f1cac (patch)
tree2ed103ee80b0fba613c88a66af854ae9952610ce /src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala
parentb516293f703c4de86397862fee1897aded2ae140 (diff)
All of src/ formatted with scalafmt
Diffstat (limited to 'src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala')
-rw-r--r--src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala b/src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala
index 64c30bdb..043c1b3b 100644
--- a/src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala
+++ b/src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala
@@ -21,7 +21,7 @@ object MemoryLoadFileType {
def deserialize(s: String): MemoryLoadFileType = s match {
case "h" => MemoryLoadFileType.Hex
case "b" => MemoryLoadFileType.Binary
- case _ => throw new FirrtlUserException(s"Unrecognized MemoryLoadFileType: $s")
+ case _ => throw new FirrtlUserException(s"Unrecognized MemoryLoadFileType: $s")
}
}
@@ -31,11 +31,11 @@ object MemoryLoadFileType {
* @param hexOrBinary use `\$readmemh` or `\$readmemb`
*/
case class LoadMemoryAnnotation(
- target: ComponentName,
- fileName: String,
- hexOrBinary: MemoryLoadFileType = MemoryLoadFileType.Hex,
- originalMemoryNameOpt: Option[String] = None
-) extends SingleTargetAnnotation[Named] {
+ target: ComponentName,
+ fileName: String,
+ hexOrBinary: MemoryLoadFileType = MemoryLoadFileType.Hex,
+ originalMemoryNameOpt: Option[String] = None)
+ extends SingleTargetAnnotation[Named] {
val (prefix, suffix) = {
fileName.split("""\.""").toList match {
@@ -57,7 +57,7 @@ case class LoadMemoryAnnotation(
def getPrefix: String =
prefix + originalMemoryNameOpt.map(n => target.name.drop(n.length)).getOrElse("")
- def getSuffix: String = suffix
+ def getSuffix: String = suffix
def getFileName: String = getPrefix + getSuffix
def duplicate(newNamed: Named): LoadMemoryAnnotation = {