spinal.core
Allow to express SpinalHDL conditional statements based on a Bool expression like an if.
Bool
if
when(cond1) { myCnt := 0 }elsewhen(cond2) { myCnt := myCnt + 1 }otherwise { myCnt := myCnt - 1 }
when Documentation
when
(Since version ) see corresponding Javadoc for more information.
Allow to express SpinalHDL conditional statements based on a
Bool
expression like anif
.when
Documentation