Files
blankos/src/kernel/sysinfo.h
2024-08-24 17:23:26 +02:00

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