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