Chick Markley
                                            Chick Markley
                                        
                                    Add to this filling out the ScalaDoc for the decoupled interface stuff. Currently the object are documented but not the methods that they contain.
@edwardcwang can you describe what that would mean?
@ducky64 Is there a use case for waiting for first of a list of events, something like ``` waitFor(cond1) { thunk1 } .orElse(cond2) { thunk2 } ... ``` Or would...
I think this is a good summary. I am open to any approach that brings this capability to the stack. I'd like to add that there be a diagnostic interface,...
Hmm. This would be easy to do, perhaps as a mode where you can poke or peek anything you want without erroring. But treadle only has symbols for things that...
Annotations
@grebe are there potential performance regressions here, have you tried this with a circuit with a whole bunch of FixedPoints
Just curious. And I was more curious about any consequences downstream having more annotations to wade through. I think @seldridge did some analysis of this overhead so I wouldn't worry...
I'm sorry but I can't seem to find which file this occurs in can you provide that.
I can cause the *new* line to print with ``` poke(c.io.in.bits.a, 4) poke(c.io.in.bits.b, 1) poke(c.io.in.valid, 1) step(1) peek(c.io.out.bits) poke(c.io.in.valid, 0) step(1) peek(c.io.out.bits) poke(c.io.in.valid, 0) step(1) peek(c.io.out.bits) poke(c.io.in.valid, 0) step(1) peek(c.io.out.bits)...