mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
10 lines
116 B
C++
10 lines
116 B
C++
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace CMOS {
|
|
|
|
byte read(byte index);
|
|
void write(byte index, byte data);
|
|
|
|
}
|