Dolu1990 on dev
Fix symplify cache ? (compare)
Dolu1990 on dev
Sim: Fix pow10 off-by-10 bug Merge pull request #782 from kl… (compare)
Dolu1990 on dev
Fix #781 inout between two subc… (compare)
asd
ERROR !
A null pointer access has been detected in the JVM.
This could happen when in your SpinalHDL description, you access an signal which is only defined further.
For instance :
val result = Bool()
result := a ^ b //a and b can't be accessed there because they are only defined one line below (Software rule of execution order)
val a,b = Bool()
case class A() extends BlackBox{
val data=inout(Analog(Bool()))
}
case class B() extends BlackBox{
val data=inout(Analog(Bool()))
}
case class C() extends Component{
val AInst=A()
val BInst=B()
AInst.data<>BInst.data
}
For instance :
myStream.stage()
All the thing created into the stage function will be Stream.scala xxx.y which isn't very usefull, you would need kind of the full stack trace XD