mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 01:20:25 +00:00
91db482ad3
No functional change.
16 lines
233 B
C++
16 lines
233 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Kernel::CMOS {
|
|
|
|
u8 read(u8 index);
|
|
void write(u8 index, u8 data);
|
|
|
|
}
|