From 809283218fcb127ab25868b5ba8756fbd59fbc0c Mon Sep 17 00:00:00 2001 From: Martin Schoeberl Date: Wed, 31 Jan 2024 20:54:19 +0100 Subject: [PATCH 1/3] Add Verilator dependency --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fbb3440..effba03 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,17 @@ with a clean running [Chisel3](https://www.chisel-lang.org/) project. #### JDK 8 or newer -We recommend LTS releases Java 8 and Java 11. You can install the JDK as recommended by your operating system, or use the prebuilt binaries from [AdoptOpenJDK](https://adoptopenjdk.net/). +We recommend LTS releases Java 8 and Java 11. You can install the JDK as your operating system recommends, or use the prebuilt binaries from [AdoptOpenJDK](https://adoptopenjdk.net/). #### SBT or mill -SBT is the most common built tool in the Scala community. You can download it [here](https://www.scala-sbt.org/download.html). +SBT is the most commonly built tool in the Scala community. You can download it [here](https://www.scala-sbt.org/download.html). mill is another Scala/Java build tool without obscure DSL like SBT. You can download it [here](https://github.com/com-lihaoyi/mill/releases) +#### Verilator + +The test with `svsim` needs Verilator installed. + ### How to get started #### Create a repository from the template From 20a6fb0ffafed12f604b635b01ba5315f16134f6 Mon Sep 17 00:00:00 2001 From: Martin Schoeberl Date: Wed, 31 Jan 2024 21:48:31 +0100 Subject: [PATCH 2/3] undo grammarly change Co-authored-by: Schuyler Eldridge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index effba03..7d245a1 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ We recommend LTS releases Java 8 and Java 11. You can install the JDK as your op #### SBT or mill -SBT is the most commonly built tool in the Scala community. You can download it [here](https://www.scala-sbt.org/download.html). +SBT is the most common build tool in the Scala community. You can download it [here](https://www.scala-sbt.org/download.html). mill is another Scala/Java build tool without obscure DSL like SBT. You can download it [here](https://github.com/com-lihaoyi/mill/releases) #### Verilator From 13812e680d24d104524d34b1e4542d016caa800b Mon Sep 17 00:00:00 2001 From: Martin Schoeberl Date: Wed, 31 Jan 2024 21:48:45 +0100 Subject: [PATCH 3/3] link to Verilator Co-authored-by: Schuyler Eldridge --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7d245a1..9517b79 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ mill is another Scala/Java build tool without obscure DSL like SBT. You can down #### Verilator The test with `svsim` needs Verilator installed. +See Verilator installation instructions [here](https://verilator.org/guide/latest/install.html). ### How to get started