Technical data

when
400
-
Simulator Command Reference ModelSim EE/PLUS Reference Manual
The multi-line
when
command below does not use a label and has two conditions.
When the conditions are met, an
echo
(p307) and a
stop
(p372) command will be
executed.
when {b = 1
and c /= 0 } {
echo “b is 1 and c is not 0”
stop
}