Basic constructor macro for vl-delaycontrol structures.
(make-vl-delaycontrol [:value <value>])
This is the usual way to construct vl-delaycontrol structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-delaycontrol structure from scratch. See also change-vl-delaycontrol, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-vl-delaycontrol (&rest args) (std::make-aggregate 'vl-delaycontrol args '((:value)) 'make-vl-delaycontrol nil))
Function:
(defun vl-delaycontrol (value) (declare (xargs :guard (vl-expr-p value))) (declare (xargs :guard t)) (let ((__function__ 'vl-delaycontrol)) (declare (ignorable __function__)) (b* ((value (mbe :logic (vl-expr-fix value) :exec value))) (cons :vl-delaycontrol value))))