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