We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failing input: http://www.eecs.berkeley.edu/~waterman/whenBug.fir
The following code snippet
reg out_slow_bits : UInt<17>, clock, reset out_slow_bits := tohost_q.deq.bits when fromhost_q.deq.valid : out_slow_bits := fromhost_q.deq.bits
generates the following incorrect Verilog:
always @(posedge clock) begin out_slow_bits <= fromhost_q$deq$bits; end
Of course, the correct code is
always @(posedge clock) begin out_slow_bits <= fromhost_q$deq$valid ? fromhost_q$deq$bits : tohost_q$deq$bits; end
The text was updated successfully, but these errors were encountered:
Moving this to FIRRTL.
Sorry, something went wrong.
Add Mill build and Bump to Chisel 3.5 (#7)
f1bdfe4
* add mill build system * bump to Chisel 3.5.0 * use cross build to select Scala version. * add gitignore * Add/use Compiler Plugin
No branches or pull requests
Failing input: http://www.eecs.berkeley.edu/~waterman/whenBug.fir
The following code snippet
generates the following incorrect Verilog:
Of course, the correct code is
The text was updated successfully, but these errors were encountered: