Jack Koenig

Results 77 issues of Jack Koenig

**Type of issue**: Feature Request **Is your feature request related to a problem? Please describe.** Questions like [this](https://stackoverflow.com/questions/72908415/calling-dsptools-produces-a-chisel-runtime-error/72941635#72941635) come up fairly regularly on Stack Overflow or Gitter where there is...

We need to just do https://github.com/chipsalliance/chisel3/pull/2043, but I want to see if some tests take a lot longer than others ### Contributor Checklist - [ ] Did you add Scaladoc...

This is a weird one that is almost certainly usually a feature but can give some very strange behavior Consider the following: ```scala class Example extends Module { val foo,...

Consider ```scala class Example extends Module { val foo, bar = IO(Input(UInt(8.W))) val out = IO(Output(UInt(8.W))) val sum = foo + bar dontTouch(sum) // Reflection here overwrites the name of...

bug

It seems that if you pass an anonymous bundle to a function without first assigning it to a val, reflection fails to find anything so its elements are empty. ```scala...

bug
question

I sketched out a version of this here: https://scastie.scala-lang.org/D0948BD1SgeZEqLGkVBoJg Ideally this (and VecInit for that matter) would: 1) compose 2) utilize DataView -- (we probably cannot change VecInit but views...

good first issue

**Type of issue**: bug report **Impact**: no functional change **Development Phase**: request | proposal **Other information** **If the current behavior is a bug, please provide the steps to reproduce the...

bug

It's incorrect for an object to extend Bundle, but it gives a truly weird error message: ```scala object ObjectBundle extends Bundle { val foo = UInt(8.W) } class Example extends...

## steps I have reproduced the bug with both sbt 1.6.2 and 1.6.0, but no problem with sbt 1.5.8. To reproduce, just take any SBT project using SBT 1.6 and...

Bug
good first issue

I'm using Scala 2.12/2.13. My basic problem is that I have a multi-project build that I want unified ScalaDoc for. I have two projects that must have different scalac behavior...