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