mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
9396108034
It's a lot crappier than I remembered it. It's gonna need a lot of work.
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);
|
|
|
|
}
|