Dolu1990 on dev
add lib.CounterUpDown init(xxx)… (compare)
Dolu1990 on dev
Add basetype.removeInitAssignme… add lib.Counter init(xxx) #823 (compare)
Dolu1990 on dev
skip formal verification while … Merge pull request #826 from Re… (compare)
So I have like
main/
|--foo
| |--fooComp.scala
| |--fooSim.scala
|
|--bar
|--fooComp.scala
|--fooSim.scala
in the the comp and sims are in different packages (also with the package statement at the head of the file). when I run the bar/fooSim it creates simWorkspace/fooComp, after that I run foo/fooSim and it overwrites the simWorkspace/fooComp from what I saw
val a = B(0, 8 bits)
val b = B(0, 8 bits)
val c = a ## b(2, 3 bits)
val sub = new Component {
val d = in Bits(11 bits)
}
sub.d := c
wire [7:0] a;
wire [7:0] b;
wire [10:0] c;
unamed sub (
.d (c[10:0] ) //i
);
assign a = 8'h0;
assign b = 8'h0;
assign c = {a,b[4 : 2]};