Registers structure used with the ddcpuid function.
REGISTERS regs = void; regs.eax = 0xaabbccdd; assert(regs.eax == 0xaabbccdd); assert(regs.ax == 0xccdd); assert(regs.al == 0xdd); assert(regs.ah == 0xcc);
See Implementation
Registers structure used with the ddcpuid function.