Add exercises

This commit is contained in:
Job Noorman 2022-10-13 11:52:00 +02:00
commit ac3cf23632
19 changed files with 21160 additions and 0 deletions

13
SpinalTest/build.sbt Normal file
View file

@ -0,0 +1,13 @@
name := "SpinalTest"
version := "0.1"
scalaVersion := "2.11.12"
val spinalVersion = "1.7.3"
fork := true
libraryDependencies ++= Seq(
"com.github.spinalhdl" % "spinalhdl-core_2.11" % spinalVersion,
"com.github.spinalhdl" % "spinalhdl-lib_2.11" % spinalVersion,
compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % spinalVersion)
)