chisel-tutorial icon indicating copy to clipboard operation
chisel-tutorial copied to clipboard

Code in Wiki is dated

Open jackkoenig opened this issue 8 years ago • 3 comments
trafficstars

eg. https://github.com/ucb-bar/chisel-tutorial/wiki/Basic%20Types%20and%20Operations

class FullAdder extends Module {
  val io = IO(new Bundle {
    val a    = UInt(INPUT, 1)
    val b    = UInt(INPUT, 1)
    val cin  = UInt(INPUT, 1)
    val sum  = UInt(OUTPUT, 1)
    val cout = UInt(OUTPUT, 1)
  })

...

jackkoenig avatar Mar 07 '17 19:03 jackkoenig

I'll fix it up

chick avatar Mar 07 '17 20:03 chick

@jackkoenig created a PR on chisel-tutorial-wiki repo. Hopefully it's ok, at the very least it's way more up-to-date than it was

chick avatar Mar 07 '17 23:03 chick

Looks fixed on wiki now

chick avatar May 26 '17 20:05 chick