Andreas Wallner

Results 15 issues of Andreas Wallner

When simulating the HDL shown below I would expect the `rxOld` signal to be a delayed version of the `io.read` (I actually stumbled upon this using `Bool.edge`), but looking at...

As reported in #53: C++20 removed the deprecated std::result_of in favor of std::invoke_result. Switch between usage of those depending on the cpp_lib_is_invocable feature test macro. See: - https://en.cppreference.com/w/cpp/types/result_of - https://en.cppreference.com/w/cpp/feature_test#Library_features...

The `std::result_of` type trait was removed with C++20 in favor of `std::invoke_result`. With on of MSVCs latest updates they did this removal (if set to compile as C++20), leading to...

Used to test for #53 and #54 Only adding a switch to allow for testing, not touching travis and appveyor configs as I do not know which specific configurations are...

I'm trying to use Kactus with a bunch of scripts/tools that we've used for a while. I encountered a problem while doing that with the XML namespace handling in Kacuts....

enhancement
feature request

I have been looking at our CDC stuff and would like to make a few additions/changes: # BufferCC BufferCC is not a safe primitive to use in general. It's totally...

After discussing some verilator behavior with Gitter user solater we came up with this example that has some (I'd say) weird behavior with verilator 5: ```scala case class Repro() extends...

Why switch back to the standard sbt folder structure: - While we can easily change the folder name for the source files, it's not done for tests - We differ...

We are currently experiencing some issues with SPI over a FT4232. `.read()` will sometimes return an empty bytearray, which will then throw off future rx. From our analysis this seems...

Decimal amounts are currently saved as they are entered which makes further processing harder. In the internal representation they should always have a well defined format, and be converted into...

enhancement