aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala
diff options
context:
space:
mode:
authorSchuyler Eldridge2019-02-25 01:02:40 -0500
committerGitHub2019-02-25 01:02:40 -0500
commita7a0cad04f912303624ec7905303d53d23abbf20 (patch)
treebba1fd30561a6b6e4bc99cfa324b1dea94bc6866 /src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala
parent5608aa8f42c1d69b59bee158d14fc6cef9b19a47 (diff)
parent6de0075d799e59e5d23463b3848e848b0912fbc4 (diff)
Merge pull request #1032 from freechipsproject/fix-scaladoc-warnings
Fix almost all scaladoc warnings, add source links
Diffstat (limited to 'src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala')
-rw-r--r--src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala b/src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala
index 7c7ef096..c5dae954 100644
--- a/src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala
+++ b/src/main/scala/firrtl/annotations/LoadMemoryAnnotation.scala
@@ -4,8 +4,7 @@ package firrtl.annotations
import java.io.File
-/**
- * Enumeration of the two types of readmem statements available in verilog
+/** Enumeration of the two types of `readmem` statements available in Verilog.
*/
object MemoryLoadFileType extends Enumeration {
type FileType = Value
@@ -14,11 +13,10 @@ object MemoryLoadFileType extends Enumeration {
val Binary: Value = Value("b")
}
-/**
- * Firrtl implementation for load memory
+/** Firrtl implementation for load memory
* @param target memory to load
* @param fileName name of input file
- * @param hexOrBinary use $readmemh or $readmemb
+ * @param hexOrBinary use `\$readmemh` or `\$readmemb`
*/
case class LoadMemoryAnnotation(
target: ComponentName,