diff --git a/macros/src/main/scala/MacroCompiler.scala b/macros/src/main/scala/MacroCompiler.scala index 64cee44e..966ea7bb 100644 --- a/macros/src/main/scala/MacroCompiler.scala +++ b/macros/src/main/scala/MacroCompiler.scala @@ -1,5 +1,11 @@ // See LICENSE for license details. +/** + * Terminology note: + * mem - target memory to compile, in design (e.g. Mem() in rocket) + * lib - technology SRAM(s) to use to compile mem + */ + package barstools.macros import firrtl._ diff --git a/macros/src/test/scala/MacroCompilerSpec.scala b/macros/src/test/scala/MacroCompilerSpec.scala index 5253623c..90779745 100644 --- a/macros/src/test/scala/MacroCompilerSpec.scala +++ b/macros/src/test/scala/MacroCompilerSpec.scala @@ -7,12 +7,6 @@ import firrtl.Utils.ceilLog2 import java.io.{File, StringWriter} abstract class MacroCompilerSpec extends org.scalatest.FlatSpec with org.scalatest.Matchers { - /** - * Terminology note: - * mem - target memory to compile, in design (e.g. Mem() in rocket) - * lib - technology SRAM(s) to use to compile mem - */ - val testDir: String = "test_run_dir/macros" new File(testDir).mkdirs // Make sure the testDir exists