mirror of
https://github.com/RGBCube/serenity
synced 2025-06-22 17:02:10 +00:00
10 lines
113 B
C++
10 lines
113 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace CMOS {
|
|
|
|
BYTE read(BYTE index);
|
|
void write(BYTE index, BYTE data);
|
|
|
|
}
|