Modifying constructor for vl-gatedelay structures.
(change-vl-gatedelay x [:rise <rise>] [:fall <fall>] [:high <high>])
This is an often useful alternative to make-vl-gatedelay.
We construct a new vl-gatedelay structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-gatedelay (x &rest args) (std::change-aggregate 'vl-gatedelay x args '((:rise . vl-gatedelay->rise) (:fall . vl-gatedelay->fall) (:high . vl-gatedelay->high)) 'change-vl-gatedelay 'remake-vl-gatedelay))