chisel
chisel copied to clipboard
Chisel: A Modern Hardware Design Language
**Description** As part of the LF project onboarding cleanup, our Project Formation Team has recommended implementing a [Developer Certificate of Origin](http://developercertificate.org) (DCO) across the Chisel repositories (and other CHIPS projects)....
**Type of issue**: Bug Report **Please provide the steps to reproduce the problem:** Use `BoringUtils.tapAndRead` on a literal, example: ``` //> using repository "sonatype-s01:snapshots" //> using scala "2.13.14" //> using...
This PR makes key simulator classes and objects in chisel3/simulator/package public to enable better customization. It includes: Making SimulatedModule constructor public. Exposing AnySimulatedModule object and methods. Removing sealed modifier from...
Hi I got trouble to generate verilog, i got this error: ``` [info] welcome to sbt 1.10.1 (Oracle Corporation Java 23.0.1) [info] loading project definition from /Users/peter/workspace/chisel-examples/hello-world/project [info] loading settings...
## About this PR 📦 Updates [io.get-coursier:coursier](https://github.com/coursier/coursier) from `2.0.16` to `2.1.24` 📜 [GitHub Release Notes](https://github.com/coursier/coursier/releases/tag/v2.1.24) - [Version Diff](https://github.com/coursier/coursier/compare/v2.0.16...v2.1.24) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...
Hello, I am from the IntelliJ Scala Plugin team We have an error report about `~` method not being resolved in IntelliJ with Scala Plugin: https://youtrack.jetbrains.com/issue/SCL-15350/Operators-not-recognized-chisel3-library The method is macro-based....
### Contributor Checklist - [x] Did you add Scaladoc to every public function/method? - [x] Did you add at least one test demonstrating the PR? - [x] Did you delete...
**Type of issue**: Bug Report **Please provide the steps to reproduce the problem:** Initializing memory is broken now. See for an error: https://github.com/schoeberl/chisel-book/actions/runs/11708082480/job/32608967721 The code is here: https://github.com/schoeberl/chisel-book/blob/6ee398bd61bf8cdee02abcd780a2035b8cff4d1a/src/main/scala/memory.scala#L107-L130 and the...
**Type of issue**: Bug Report **Please provide the steps to reproduce the problem:** Using the latest chisel-template (corresponding to chisel v6.0.0), emit the following code as System Verilog, and compare...
Per @seldridge's suggestion here I add analog of `addLayer` for `ModuleChoice` called `addGroup`. This permits defining a group in a circuit without necessarily using that group in a circuit, allowing...