ladybird/Kernel/CMOS.h
Andreas Kling 9396108034 Import the "gerbert" kernel I worked on earlier this year.
It's a lot crappier than I remembered it. It's gonna need a lot of work.
2018-10-16 11:02:00 +02:00

11 lines
113 B
C++

#pragma once
#include "types.h"
namespace CMOS {
BYTE read(BYTE index);
void write(BYTE index, BYTE data);
}