1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 10:01:13 +09:00
ladybird/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);
}