1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 12:55:07 +00:00
serenity/Kernel/CMOS.h

10 lines
116 B
C++

#pragma once
#include <AK/Types.h>
namespace CMOS {
byte read(byte index);
void write(byte index, byte data);
}