Splash
This commit is contained in:
@@ -5,14 +5,15 @@
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
/*
|
||||
* cpuid - Wrapper for CPUID instruction
|
||||
* @leaf: Requested leaf
|
||||
* @eax: EAX register value
|
||||
* @ebx: EBX register value
|
||||
* @ecx: ECX register value
|
||||
* @edx: EDX register value
|
||||
* @leaf: Requested leaf (input EAX)
|
||||
* @eax: EAX register value (output)
|
||||
* @ebx: EBX register value (output)
|
||||
* @ecx: ECX register value (output)
|
||||
* @edx: EDX register value (output)
|
||||
*/
|
||||
void cpuid(uint32_t leaf, uint32_t* eax, uint32_t* ebx, uint32_t* ecx, uint32_t* edx)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user