1. Apr 29, 2017
  2. Apr 21, 2017
  3. Apr 19, 2017
    • Jim Lawson's avatar
      "Scope" test resource (top.cpp). (#398) · 25a0500d
      Jim Lawson authored
      Jar resources (unlike classes) are typically not scoped. This can create collisions if we have similarly named resources in multiple jars, especially when merging multiple projects in an IDE. Give this resource a distinct name to avoid colliding with chisel3 top.cpp.
      25a0500d
  4. Apr 14, 2017
  5. Apr 05, 2017
  6. Apr 04, 2017
  7. Mar 30, 2017
  8. Mar 24, 2017
  9. Mar 23, 2017
  10. Mar 18, 2017
  11. Mar 16, 2017
  12. Mar 15, 2017
  13. Mar 11, 2017
  14. Mar 10, 2017
  15. Mar 07, 2017
    • Adam Izraelevitz's avatar
      Zero width (#402) · 132d7baa
      Adam Izraelevitz authored
      * Added Zero width wires.
      
      Semantics:
       - No change to width inference rules, e.g.
           a<0> + b<2> = c<3>
       - Replace zero width wires with UInt<1>(0) or SInt<1>(0)
       - Performs constant prop.
       - Redo width/type inference
      
      * Remove errant println
      
      * Moved ZeroWidth after ConvertFixedToSInt
      
      * Added more tests, bugfix match on connect
      
      Also replaced constprop with infertypes for correctness
      
      * Updated to new emitter and test infrastructure
      132d7baa
    • Adam Izraelevitz's avatar
      Fix mistake when rebasing · 881ad9a4
      Adam Izraelevitz authored
      881ad9a4