This commit is contained in:
marton bognar 2025-03-12 13:34:09 +01:00
parent ac3cf23632
commit 2256bc29f7
5 changed files with 399 additions and 392 deletions

View file

@ -1,20 +1,12 @@
# Prerequisites
- [sbt](https://www.scala-sbt.org/download.html)
- [sbt](https://www.scala-sbt.org/download.html) (which relies on a Java JDK)
- [Verilator](https://verilator.org/guide/latest/install.html)
- A Java JDK
More info can be found in the SpinalHDL
[documentation](https://spinalhdl.github.io/SpinalDoc-RTD/master/SpinalHDL/Getting%20Started/getting_started.html).
On Arch Linux, everything can be installed from the package repositories:
```
sudo pacman -S sbt verilator jdk-openjdk
```
The PCs in the CS department have everything installed.
# Test installation
To test code generation (this should create a file called `Counter.v`):

View file

@ -2,7 +2,7 @@ name := "SpinalTest"
version := "0.1"
scalaVersion := "2.11.12"
val spinalVersion = "1.7.3"
val spinalVersion = "1.10.2a"
fork := true