選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

23 行
659B

  1. package Ex0
  2. import chisel3._
  3. import java.io.File
  4. object main {
  5. def main(args: Array[String]): Unit = {
  6. val s = """
  7. | Attempting to "run" a chisel program is rather meaningless.
  8. | Instead, try running the tests, for instance with "test" or "testOnly Examples.MyIncrementTest
  9. |
  10. | If you want to create chisel graphs, simply remove this message and comment in the code underneath
  11. | to generate the modules you're interested in.
  12. """.stripMargin
  13. println(s)
  14. }
  15. // Uncomment to dump .fir file
  16. // val f = new File("MatMul.fir")
  17. // chisel3.Driver.dumpFirrtl(chisel3.Driver.elaborate(() => new MatMul(5, 4)), Option(f))
  18. }