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