chisel-lab icon indicating copy to clipboard operation
chisel-lab copied to clipboard

Lab exercises for Chisel in the digital electronics 2 course at DTU

Results 4 chisel-lab issues
Sort by recently updated
recently updated
newest added

curl -Lo coursier https://git.io/coursier chmod +x coursier coursier will error ///////////////////////////////////////////////////////////// modify to this #install coursier: https://get-coursier.io/docs/1.1.0-M10/cli-overview curl -L -o coursier https://git.io/coursier-cli && chmod +x coursier && ./coursier --help pip3...

This is correct install way #install scala tool: https://www.scala-sbt.org/download.html echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/apt/sources.list.d/sbt.list echo "deb https://repo.scala-sbt.org/scalasbt/debian /" | sudo tee /etc/apt/sources.list.d/sbt_old.list curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" |...

The baud rate and the frequency are supposed to be flipped as seen here: ```scala class BufferedTx(frequency: Int, baudRate: Int) extends Module { val io = IO(new Bundle { val...

In [HeapControl.scala](https://github.com/schoeberl/chisel-lab/blob/master/lab4/src/main/scala/heap/HeapControl.scala#L47), using `RegEnable` will make full always be true after the first time when heap is full, so the dut cannot deassert full after a remove operation has finished...