mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 07:07:23 +00:00
11 lines
113 B
C++
11 lines
113 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace CMOS {
|
|
|
|
byte read(byte index);
|
|
void write(byte index, byte data);
|
|
|
|
}
|