Matthieu Baty
Matthieu Baty
`typing error: unkown name ` should read `typing error: unknown name `. This comes from line 345 of `pretyping.ml`.
I noticed that the `getFields` function of the RISC-V example often gets called just to get the value of a single field (with calls along the line of `let funct3...
`valid_rs1` and `valid_rs2` are never read in the RISC-V example. Making sure that the values really correspond to `rs1` or `rs2` instead of stalling whenever at least one of them...
When synthesizing the RV32E example with the `unit/led` program on my TinyFPGA BX, the LED stays off. On the other hand, Cuttlesim and Verilator both behave as I expect them...
I'm interested in learning more about the upcoming module system. What are its main design objectives and how far along is it in its development? I also have one use...
Most of the proofs of the lemmas defined in the file `examples/rv/MultiplierCorrectness.v` do not pass. I did not check them all individually, but most of them seem to be outdated....
The following circuit leads to a `firtool` crash: ``` circuit c: module c: wire w: {|a: UInt, b: UInt|} w is invalid ``` The backtrace is the following: ``` all...
The following circuit leads to a `firtool` crash: ``` circuit c: type enum = {|a: const UInt, b: UInt|} module c: ``` The backtrace is the following: ``` :0: error:...
_**Edit:** I initially noticed this behavior using a version of CIRCT that was a few months old but already included the changes from #6138. On commit 649ee55, this fails in...
I get the following error when I attempt to compile `examples/cosimulation.v` : ``` /usr/bin/ld: blackbox.obj_dir.opt/verilated.o: in function `VerilatedContext::threadPoolp()': verilated.cpp:(.text+0x3212): undefined reference to `VlThreadPool::VlThreadPool(VerilatedContext*, unsigned int)' collect2: error: ld returned 1...