mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
10 lines
113 B
C++
10 lines
113 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace CMOS {
|
|
|
|
BYTE read(BYTE index);
|
|
void write(BYTE index, BYTE data);
|
|
|
|
}
|