mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +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);
|
|
|
|
}
|