mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-11 02:31:04 +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);
|
||
|
|
|
||
|
|
}
|