Jim Lawson
Jim Lawson
I stumbled over this as well. It's in the "Conditional Assignments and Memories " section of the chisel-tutorial wiki. On Wed, Mar 28, 2018 at 2:47 PM, Chick Markley wrote:...
Thanks for pointing this out. We'll upgrade this this week. > On Sep 11, 2016, at 12:12 PM, awmiller [email protected] wrote: > > Using the Vagrant tutorial > > vagrant@precise64:~/chisel-tutorial/hello$...
I've upgraded the Vagrant image with newer versions of ubuntu, java, and sbt. The Chisel code is very old. We're on the verge of releasing updates to Chisel2 and a...
@songmaotian, could you provide a test case for this?
This is due to a bug in the way Tester Simulation communications memory is allocated. A fix for this has been incorporated into the master GitHub repo (pr #666), but...
We've released Chisel v2.2.33 which should resolve this issue. Please let me know if it doesn't. > On Apr 13, 2016, at 5:29 PM, Jim Lawson [email protected] wrote: > >...
If we're willing to use C++11 extensions, the following method definition in emulator_mod.h helps: ``` explicit inline operator val_t() { static_assert(w
The `explicit` function-specifier appears to be available with --std=c++0x, so pretty much any UNIX system with a post-2007 c++ compiler should support it. I think we should be okay.