summaryrefslogtreecommitdiff
path: root/Kernel/CMOS.cpp
blob: c4e8e5538a3feb26f045b26de831f74d971b5bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "CMOS.h"
#include "IO.h"

namespace CMOS {

BYTE read(BYTE index)
{
    IO::out8(0x70, index);
    return IO::in8(0x71);
}

void write(BYTE index, BYTE data)
{
    IO::out8(0x70, index);
    IO::out8(0x71, data);
}

}