mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
9d05f6b7a7
This is really neat. :^)
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);
|
|
|
|
}
|