mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
9396108034
It's a lot crappier than I remembered it. It's gonna need a lot of work.
16 lines
216 B
C++
16 lines
216 B
C++
#pragma once
|
|
|
|
namespace Keyboard {
|
|
|
|
enum class LED {
|
|
ScrollLock = 1 << 0,
|
|
NumLock = 1 << 1,
|
|
CapsLock = 1 << 2,
|
|
};
|
|
|
|
void initialize();
|
|
void setLED(LED);
|
|
void unsetLED(LED);
|
|
void handleInterrupt();
|
|
|
|
}
|