Dolu1990 on scala3-dev
various fixes portable to scala… Comment out macroes (compare)
Dolu1990 on scala3-dev
scala3 comment out regif macro … (compare)
Dolu1990 on scala3-dev
Fix compiler plugin for classes… randBoot now accept both dotted… scala3 spinalEnumSelectable and 4 more (compare)
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]};
Is it possible to have FST instead of VCD for wavetraces? I havent found anything in the documentation yet
you can do it with withFstWave: https://github.com/SpinalHDL/SpinalHDL/blob/e40a9b01419fc01104e15d73b585c730c7c2fb6f/lib/src/main/scala/spinal/lib/fsm/Example.scala#L645