mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
11 lines
116 B
C++
11 lines
116 B
C++
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace CMOS {
|
|
|
|
byte read(byte index);
|
|
void write(byte index, byte data);
|
|
|
|
}
|