Raw constructor for ecutnames-p structures.
Syntax:
(ecutnames original value value-reg decision-wire decision-reg mux)
This is the lowest-level constructor for ecutnames-p structures. It simply conses together a structure with the specified fields.
Note: It's generally better to use macros like make-ecutnames or change-ecutnames instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.
The ecutnames-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-ecutnames instead.
This is an ordinary constructor function introduced by std::defaggregate.
Function:
(defun ecutnames (original value value-reg decision-wire decision-reg mux) (declare (xargs :guard (and (symbolp original) (symbolp value) (symbolp value-reg) (symbolp decision-wire) (symbolp decision-reg) (symbolp mux)))) (cons (cons 'original original) (cons (cons 'value value) (cons (cons 'value-reg value-reg) (cons (cons 'decision-wire decision-wire) (cons (cons 'decision-reg decision-reg) (cons (cons 'mux mux) nil)))))))