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);
|
|
|
|
}
|