ladybird/Kernel/CMOS.h
Andreas Kling 9d05f6b7a7 Make bash-2.05b build with minimal changes.
This is really neat. :^)
2018-11-17 00:14:07 +01:00

11 lines
113 B
C++

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