Rishka
RISC-V virtual runtime in C/C++ made for ESP32-WROVER
devices.h
Go to the documentation of this file.
1
/*
2
* This file is part of the Rishka distribution (https://github.com/nthnn/rishka).
3
* Copyright (c) 2024 Nathanne Isip.
4
*
5
* This program is free software: you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License as published by
7
* the Free Software Foundation, version 3.
8
*
9
* This program is distributed in the hope that it will be useful, but
10
* WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
* General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16
*/
17
28
#ifndef LIBRISHKA_DEVICES_H
29
#define LIBRISHKA_DEVICES_H
30
44
typedef
enum
{
45
PS2_DEV_UNKNOWN
,
46
PS2_DEV_OLD_ATKB
,
47
PS2_DEV_MOUSE_STD
,
48
PS2_DEV_MOUSE_WHEEL
,
49
PS2_DEV_MOUSE_5BTN
,
50
PS2_DEV_MF2KB_TRANS
,
51
PS2_DEV_MF2KB
52
}
PS2Device
;
53
54
#endif
PS2Device
PS2Device
Enumeration of PS/2 device types.
Definition:
devices.h:44
PS2_DEV_UNKNOWN
@ PS2_DEV_UNKNOWN
Definition:
devices.h:45
PS2_DEV_MOUSE_STD
@ PS2_DEV_MOUSE_STD
Definition:
devices.h:47
PS2_DEV_MOUSE_WHEEL
@ PS2_DEV_MOUSE_WHEEL
Definition:
devices.h:48
PS2_DEV_MF2KB_TRANS
@ PS2_DEV_MF2KB_TRANS
Definition:
devices.h:50
PS2_DEV_MOUSE_5BTN
@ PS2_DEV_MOUSE_5BTN
Definition:
devices.h:49
PS2_DEV_OLD_ATKB
@ PS2_DEV_OLD_ATKB
Definition:
devices.h:46
PS2_DEV_MF2KB
@ PS2_DEV_MF2KB
Definition:
devices.h:51
Copyright 2024 -
Nathanne Isip