12 lines
255 B
C
12 lines
255 B
C
// System information kernel module header
|
|
// Author: xamidev
|
|
// Licensed under the Unlicense. See the repo below.
|
|
// https://github.com/xamidev/blankos
|
|
|
|
#ifndef SYSINFO_H
|
|
#define SYSINFO_H
|
|
|
|
void cpuid(int code, unsigned int* a, unsigned int* d);
|
|
|
|
#endif
|