Constructor macro for ecutnames-p structures.
Syntax:
(make-ecutnames [:original <original>] [:value <value>] [:value-reg <value-reg>] [:decision-wire <decision-wire>] [:decision-reg <decision-reg>] [:mux <mux>])
This is our preferred way to construct ecutnames-p structures. It simply conses together a structure with the specified fields.
This macro generates a new ecutnames-p structure from scratch. See also change-ecutnames, which can "change" an existing structure, instead.
The ecutnames-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-ecutnames instead.
This is an ordinary
Macro:
(defmacro make-ecutnames (&rest args) (std::make-aggregate 'ecutnames args '((:original) (:value) (:value-reg) (:decision-wire) (:decision-reg) (:mux)) 'make-ecutnames nil))