2017-05-30 03:38:38 +02:00
|
|
|
/*
|
2022-10-27 17:08:58 -04:00
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2022-10-27 17:08:58 -04:00
|
|
|
* This file is part of the 86Box distribution.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2022-10-27 17:08:58 -04:00
|
|
|
* Definitions for the keyboard interface.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2023-01-06 15:36:29 -05:00
|
|
|
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
|
2022-10-27 17:08:58 -04:00
|
|
|
* Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
2017-10-24 22:10:21 -04:00
|
|
|
*
|
2022-10-27 17:08:58 -04:00
|
|
|
* Copyright 2008-2019 Sarah Walker.
|
|
|
|
|
* Copyright 2016-2019 Miran Grca.
|
|
|
|
|
* Copyright 2017-2019 Fred N. van Kempen.
|
2017-05-30 03:38:38 +02:00
|
|
|
*/
|
2022-02-18 19:42:21 -05:00
|
|
|
|
2017-08-24 01:14:39 -04:00
|
|
|
#ifndef EMU_KEYBOARD_H
|
2022-09-18 17:15:38 -04:00
|
|
|
#define EMU_KEYBOARD_H
|
2016-06-26 00:34:39 +02:00
|
|
|
|
2023-04-16 17:16:04 +02:00
|
|
|
enum {
|
|
|
|
|
DEV_KBD = 0,
|
2023-06-26 12:47:04 -04:00
|
|
|
DEV_AUX = 1
|
2023-04-16 17:16:04 +02:00
|
|
|
};
|
|
|
|
|
|
2023-04-19 23:34:32 +02:00
|
|
|
enum {
|
2023-06-26 12:47:04 -04:00
|
|
|
DEV_STATE_MAIN_1 = 0,
|
|
|
|
|
DEV_STATE_MAIN_OUT = 1,
|
|
|
|
|
DEV_STATE_MAIN_2 = 2,
|
|
|
|
|
DEV_STATE_MAIN_CMD = 3,
|
|
|
|
|
DEV_STATE_MAIN_WANT_IN = 4,
|
|
|
|
|
DEV_STATE_MAIN_IN = 5,
|
|
|
|
|
DEV_STATE_EXECUTE_BAT = 6,
|
|
|
|
|
DEV_STATE_MAIN_WANT_EXECUTE_BAT = 7
|
2023-04-19 23:34:32 +02:00
|
|
|
};
|
|
|
|
|
|
2023-04-16 17:16:04 +02:00
|
|
|
/* Used by the AT / PS/2 keyboard controller, common device, keyboard, and mouse. */
|
2023-06-28 13:46:28 -04:00
|
|
|
typedef struct kbc_at_port_t {
|
2023-06-26 12:47:04 -04:00
|
|
|
uint8_t wantcmd;
|
|
|
|
|
uint8_t dat;
|
2023-04-16 17:16:04 +02:00
|
|
|
|
2023-04-20 14:28:37 +02:00
|
|
|
int16_t out_new;
|
2023-04-16 17:16:04 +02:00
|
|
|
|
|
|
|
|
void *priv;
|
|
|
|
|
|
2023-08-21 20:26:11 -04:00
|
|
|
void (*poll)(void *priv);
|
2023-04-19 23:34:32 +02:00
|
|
|
} kbc_at_port_t;
|
2023-04-16 17:16:04 +02:00
|
|
|
|
|
|
|
|
/* Used by the AT / PS/2 common device, keyboard, and mouse. */
|
2023-06-28 13:46:28 -04:00
|
|
|
typedef struct atkbc_dev_t {
|
2023-04-16 17:16:04 +02:00
|
|
|
const char *name; /* name of this device */
|
|
|
|
|
|
2023-06-26 12:47:04 -04:00
|
|
|
uint8_t type;
|
|
|
|
|
uint8_t command;
|
|
|
|
|
uint8_t last_scan_code;
|
|
|
|
|
uint8_t state;
|
|
|
|
|
uint8_t resolution;
|
|
|
|
|
uint8_t rate;
|
|
|
|
|
uint8_t cmd_queue_start;
|
|
|
|
|
uint8_t cmd_queue_end;
|
|
|
|
|
uint8_t queue_start;
|
|
|
|
|
uint8_t queue_end;
|
2023-04-16 17:16:04 +02:00
|
|
|
|
|
|
|
|
uint16_t flags;
|
|
|
|
|
|
|
|
|
|
/* Internal FIFO, not present on real devices, needed for commands that
|
|
|
|
|
output multiple bytes. */
|
|
|
|
|
uint8_t cmd_queue[16];
|
|
|
|
|
|
2023-05-16 00:20:09 +02:00
|
|
|
uint8_t queue[64];
|
2023-04-16 17:16:04 +02:00
|
|
|
|
2023-06-26 12:47:04 -04:00
|
|
|
int fifo_mask;
|
|
|
|
|
int mode;
|
|
|
|
|
int x;
|
|
|
|
|
int y;
|
|
|
|
|
int z;
|
|
|
|
|
int b;
|
2024-01-20 17:27:24 +01:00
|
|
|
int ignore;
|
2023-04-16 17:16:04 +02:00
|
|
|
|
|
|
|
|
int *scan;
|
|
|
|
|
|
|
|
|
|
void (*process_cmd)(void *priv);
|
|
|
|
|
void (*execute_bat)(void *priv);
|
|
|
|
|
|
2023-04-19 23:34:32 +02:00
|
|
|
kbc_at_port_t *port;
|
2023-04-16 17:16:04 +02:00
|
|
|
} atkbc_dev_t;
|
|
|
|
|
|
2023-06-28 13:46:28 -04:00
|
|
|
typedef struct scancode {
|
2022-09-18 17:15:38 -04:00
|
|
|
const uint8_t mk[4];
|
|
|
|
|
const uint8_t brk[4];
|
2017-11-05 01:57:04 -05:00
|
|
|
} scancode;
|
|
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
#define STATE_SHIFT_MASK 0x22
|
|
|
|
|
#define STATE_RSHIFT 0x20
|
|
|
|
|
#define STATE_LSHIFT 0x02
|
2017-11-05 01:57:04 -05:00
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
#define FAKE_LSHIFT_ON 0x100
|
|
|
|
|
#define FAKE_LSHIFT_OFF 0x101
|
|
|
|
|
#define LSHIFT_ON 0x102
|
|
|
|
|
#define LSHIFT_OFF 0x103
|
|
|
|
|
#define RSHIFT_ON 0x104
|
|
|
|
|
#define RSHIFT_OFF 0x105
|
2018-01-13 22:56:13 +01:00
|
|
|
|
2022-07-19 18:51:18 -04:00
|
|
|
/* KBC #define's */
|
|
|
|
|
/* IBM-style controllers */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_IBM_PC_XT 0x0000 /* IBM PC/XT */
|
|
|
|
|
#define KBC_IBM_PCJR 0x0001 /* IBM PCjr */
|
|
|
|
|
#define KBC_IBM_TYPE_1 0x0002 /* IBM AT / PS/2 Type 1 */
|
|
|
|
|
#define KBC_IBM_TYPE_2 0x0003 /* IBM PS/2 Type 2 */
|
|
|
|
|
#define KBC_AMI_ACCESS_METHODS 0x0004 /* Access Methods AMI */
|
|
|
|
|
#define KBC_JU_JET 0x0005 /* Ju-Jet */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* OEM proprietary */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_TANDY 0x0011 /* Tandy 1000/1000HX */
|
|
|
|
|
#define KBC_TANDY_SL2 0x0012 /* Tandy 1000SL2 */
|
|
|
|
|
#define KBC_AMSTRAD 0x0013 /* Amstrad */
|
|
|
|
|
#define KBC_OLIVETTI_XT 0x0014 /* Olivetti XT */
|
|
|
|
|
#define KBC_OLIVETTI 0x0015 /* Olivetti AT */
|
|
|
|
|
#define KBC_TOSHIBA 0x0016 /* Toshiba AT */
|
|
|
|
|
#define KBC_COMPAQ 0x0017 /* Compaq */
|
|
|
|
|
#define KBC_NCR 0x0018 /* NCR */
|
|
|
|
|
#define KBC_QUADTEL 0x0019 /* Quadtel */
|
|
|
|
|
#define KBC_SIEMENS 0x001A /* Siemens */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* Phoenix MultiKey/42 */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define PHOENIX_MK42_105 0x0521 /* Phoenix MultiKey/42 1.05 */
|
|
|
|
|
#define PHOENIX_MK42_129 0x2921 /* Phoenix MultiKey/42 1.29 */
|
|
|
|
|
#define PHOENIX_MK42_138 0x3821 /* Phoenix MultiKey/42 1.38 */
|
|
|
|
|
#define PHOENIX_MK42_140 0x3821 /* Phoenix MultiKey/42 1.40 */
|
|
|
|
|
#define PHOENIX_MKC42_214 0x1422 /* Phoenix MultiKey/C42 2.14 */
|
|
|
|
|
#define PHOENIX_MK42I_416 0x1624 /* Phoenix MultiKey/42i 4.16 */
|
|
|
|
|
#define PHOENIX_MK42I_419 0x1924 /* Phoenix MultiKey/42i 4.19 */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI 0x3x */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_ACER_V30 0x0030 /* Acer (0xA1 returns nothing, 0xAF returns 0x00) */
|
|
|
|
|
#define KBC_AMI_MEGAKEY_SUPER_IO 0x0035 /* AMI '5' MegaKey 1994 NSC (and SM(S)C?) */
|
|
|
|
|
#define KBC_AMI_8 0x0038 /* AMI '8' */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI 0x4x */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_AMI_B 0x0042 /* AMI 'B' */
|
|
|
|
|
#define KBC_AMI_D 0x0044 /* AMI 'D' */
|
|
|
|
|
#define KBC_AMI_E 0x0045 /* AMI 'E' */
|
|
|
|
|
#define KBC_AMIKEY 0x0046 /* AMI 'F'/AMIKEY */
|
|
|
|
|
#define KBC_AMIKEY_2 0x0048 /* AMI 'H'/AMIEY-2 */
|
|
|
|
|
#define KBC_MR 0x004D /* MR 'M' - Temporary classification until we get a dump */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI 0x5x */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_AMI_MEGAKEY_1993 0x0050 /* AMI 'P' MegaKey 1993 */
|
|
|
|
|
#define KBC_AMI_MEGAKEY_1994 0x0052 /* AMI 'R' MegaKey 1994 - 0xA0 returns 1993 copyright */
|
|
|
|
|
#define KBC_AMI_TRIGEM 0x005A /* TriGem AMI 'Z' (1990 AMI copyright) */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI 0x6x */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_TANDON 0x0061 /* Tandon 'a' - Temporary classification until we get a dump */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* Holtek */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_HT_REGIONAL_6542 0x1046 /* Holtek 'F' (Regional 6542) */
|
|
|
|
|
#define KBC_HT_HT6542B_BESTKEY 0x1048 /* Holtek 'H' (Holtek HT6542B, BestKey) */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI 0x0x clone without command 0xA0 */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_UNK_00 0x2000 /* Unknown 0x00 */
|
|
|
|
|
#define KBC_UNK_01 0x2001 /* Unknown 0x01 */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI 0x3x clone without command 0xA0 */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_UNK_7 0x2037 /* Unknown '7' - Temporary classification until we get a dump */
|
|
|
|
|
#define KBC_UNK_9 0x2037 /* Unknown '9' - Temporary classification until we get a dump */
|
|
|
|
|
#define KBC_JETKEY_NO_VER 0x2038 /* No-version JetKey '8' */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI 0x4x clone without command 0xA0 */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_UNK_A 0x2041 /* Unknown 'A' - Temporary classification until we get a dump */
|
|
|
|
|
#define KBC_JETKEY_5_W83C42 0x2046 /* JetKey 5.0 'F' and Winbond W83C42 */
|
|
|
|
|
#define KBC_UNK_G 0x2047 /* Unknown 'G' - Temporary classification until we get a dump */
|
|
|
|
|
#define KBC_MB_300E_SIS 0x2048 /* MB-300E Non-VIA 'H' and SiS 5582/559x */
|
|
|
|
|
#define KBC_UNK_L 0x204C /* Unknown 'L' - Temporary classification until we get a dump */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI 0x0x clone with command 0xA0 (Get Copyright String) only returning 0x00 */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_VPC_2007 0x3000 /* Microsoft Virtual PC 2007 - everything returns 0x00 */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI 0x4x clone with command 0xA0 (Get Copyright String) only returning 0x00 */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_ALI_M148X 0x3045 /* ALi M148x 'E'/'U' (0xA1 actually returns 'F' but BIOS shows 'E' or 'U') */
|
|
|
|
|
#define KBC_LANCE_UTRON 0x3046 /* Lance LT38C41 'F', Utron */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI 0x5x clone with command 0xA0 (Get Copyright String) only returning 0x00 */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_SARC_6042 0x3055 /* SARC 6042 'U' */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* Award and clones */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_AWARD 0x4200 /* Award (0xA1 returns 0x00) - Temporary classification until we get \
|
|
|
|
|
the real 0xAF return */
|
|
|
|
|
#define KBC_VIA_VT82C4XN 0x4246 /* VIA VT82C41N, VT82C4N (0xA1 returns 'F') */
|
|
|
|
|
#define KBC_VIA_VT82C586A 0x4346 /* VIA VT82C586A (0xA1 returns 'F') */
|
|
|
|
|
#define KBC_VIA_VT82C586B 0x4446 /* VIA VT82C586B (0xA1 returns 'F') */
|
|
|
|
|
#define KBC_VIA_VT82C686B 0x4546 /* VIA VT82C686B (0xA1 returns 'F') */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* UMC */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_UMC_UM8886 0x5048 /* UMC UM8886 'H' */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* IBM-style controllers with inverted P1 video type bit polarity */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_IBM_TYPE_1_XI8088 0x8000 /* Xi8088: IBM Type 1 */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* AMI (this is the 0xA1 revision byte) with inverted P1 video type bit polarity */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_ACER_V30_INV 0x8030 /* Acer (0xA1 returns nothing, 0xAF returns 0x00) */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* Holtek with inverted P1 video type bit polarity */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_HT_HT6542B_XI8088 0x9048 /* Xi8088: Holtek 'H' (Holtek HT6542B, BestKey) */
|
2022-07-19 18:51:18 -04:00
|
|
|
/* Award and clones with inverted P1 video type bit polarity */
|
2022-09-18 17:15:38 -04:00
|
|
|
#define KBC_VIA_VT82C4XN_XI8088 0xC246 /* Xi8088: VIA VT82C41N, VT82C4N (0xA1 returns 'F') */
|
2022-07-19 18:51:18 -04:00
|
|
|
|
2017-10-24 22:10:21 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
extern uint8_t keyboard_mode;
|
|
|
|
|
extern int keyboard_scan;
|
2017-11-05 01:57:04 -05:00
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
extern void (*keyboard_send)(uint16_t val);
|
|
|
|
|
extern void kbd_adddata_process(uint16_t val, void (*adddata)(uint16_t val));
|
2017-11-05 01:57:04 -05:00
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const scancode scancode_xt[512];
|
2017-11-08 16:29:54 -05:00
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
extern uint8_t keyboard_set3_flags[512];
|
|
|
|
|
extern uint8_t keyboard_set3_all_repeat;
|
|
|
|
|
extern uint8_t keyboard_set3_all_break;
|
2023-05-11 03:02:36 -04:00
|
|
|
extern int mouse_queue_start;
|
|
|
|
|
extern int mouse_queue_end;
|
|
|
|
|
extern int mouse_cmd_queue_start;
|
|
|
|
|
extern int mouse_cmd_queue_end;
|
2022-09-18 17:15:38 -04:00
|
|
|
extern int mouse_scan;
|
2016-06-26 00:34:39 +02:00
|
|
|
|
2023-04-19 23:34:32 +02:00
|
|
|
extern kbc_at_port_t *kbc_at_ports[2];
|
2023-04-16 17:16:04 +02:00
|
|
|
|
2017-11-05 01:57:04 -05:00
|
|
|
#ifdef EMU_DEVICE_H
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const device_t keyboard_pc_device;
|
|
|
|
|
extern const device_t keyboard_pc82_device;
|
2022-10-20 00:33:30 +02:00
|
|
|
extern const device_t keyboard_pravetz_device;
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const device_t keyboard_xt_device;
|
|
|
|
|
extern const device_t keyboard_xt86_device;
|
|
|
|
|
extern const device_t keyboard_xt_compaq_device;
|
2022-10-31 04:04:47 +01:00
|
|
|
extern const device_t keyboard_xt_t1x00_device;
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const device_t keyboard_tandy_device;
|
|
|
|
|
# if defined(DEV_BRANCH) && defined(USE_LASERXT)
|
|
|
|
|
extern const device_t keyboard_xt_lxt3_device;
|
2023-01-08 15:58:36 -05:00
|
|
|
# endif /*defined(DEV_BRANCH) && defined(USE_LASERXT) */
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const device_t keyboard_xt_olivetti_device;
|
|
|
|
|
extern const device_t keyboard_xt_zenith_device;
|
2023-11-07 01:42:22 +01:00
|
|
|
extern const device_t keyboard_xt_hyundai_device;
|
2022-10-28 02:23:08 +02:00
|
|
|
extern const device_t keyboard_xtclone_device;
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const device_t keyboard_at_device;
|
2023-07-03 02:36:17 +02:00
|
|
|
extern const device_t keyboard_at_siemens_device;
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const device_t keyboard_at_ami_device;
|
2023-04-08 03:11:53 +02:00
|
|
|
extern const device_t keyboard_at_tg_ami_device;
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const device_t keyboard_at_toshiba_device;
|
|
|
|
|
extern const device_t keyboard_at_olivetti_device;
|
|
|
|
|
extern const device_t keyboard_at_ncr_device;
|
2023-07-14 22:14:56 +02:00
|
|
|
extern const device_t keyboard_at_compaq_device;
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const device_t keyboard_ps2_device;
|
|
|
|
|
extern const device_t keyboard_ps2_ps1_device;
|
|
|
|
|
extern const device_t keyboard_ps2_ps1_pci_device;
|
|
|
|
|
extern const device_t keyboard_ps2_xi8088_device;
|
|
|
|
|
extern const device_t keyboard_ps2_ami_device;
|
2023-04-08 03:11:53 +02:00
|
|
|
extern const device_t keyboard_ps2_tg_ami_device;
|
|
|
|
|
extern const device_t keyboard_ps2_tg_ami_green_device;
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const device_t keyboard_ps2_olivetti_device;
|
|
|
|
|
extern const device_t keyboard_ps2_mca_2_device;
|
|
|
|
|
extern const device_t keyboard_ps2_quadtel_device;
|
|
|
|
|
extern const device_t keyboard_ps2_pci_device;
|
|
|
|
|
extern const device_t keyboard_ps2_ami_pci_device;
|
|
|
|
|
extern const device_t keyboard_ps2_intel_ami_pci_device;
|
|
|
|
|
extern const device_t keyboard_ps2_acer_pci_device;
|
|
|
|
|
extern const device_t keyboard_ps2_ali_pci_device;
|
2023-04-08 03:11:53 +02:00
|
|
|
extern const device_t keyboard_ps2_tg_ami_pci_device;
|
2023-04-19 23:34:32 +02:00
|
|
|
|
|
|
|
|
extern const device_t keyboard_at_generic_device;
|
2023-01-08 15:58:36 -05:00
|
|
|
#endif /*EMU_DEVICE_H*/
|
2017-08-24 01:14:39 -04:00
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
extern void keyboard_init(void);
|
|
|
|
|
extern void keyboard_close(void);
|
|
|
|
|
extern void keyboard_set_table(const scancode *ptr);
|
|
|
|
|
extern void keyboard_poll_host(void);
|
|
|
|
|
extern void keyboard_process(void);
|
|
|
|
|
extern uint16_t keyboard_convert(int ch);
|
|
|
|
|
extern void keyboard_input(int down, uint16_t scan);
|
|
|
|
|
extern void keyboard_update_states(uint8_t cl, uint8_t nl, uint8_t sl);
|
|
|
|
|
extern uint8_t keyboard_get_shift(void);
|
|
|
|
|
extern void keyboard_get_states(uint8_t *cl, uint8_t *nl, uint8_t *sl);
|
|
|
|
|
extern void keyboard_set_states(uint8_t cl, uint8_t nl, uint8_t sl);
|
|
|
|
|
extern int keyboard_recv(uint16_t key);
|
2023-04-13 22:47:42 +02:00
|
|
|
extern int keyboard_isfsenter(void);
|
2023-07-24 15:07:08 -03:00
|
|
|
extern int keyboard_isfsenter_up(void);
|
2022-09-18 17:15:38 -04:00
|
|
|
extern int keyboard_isfsexit(void);
|
2023-07-24 15:07:08 -03:00
|
|
|
extern int keyboard_isfsexit_up(void);
|
2022-09-18 17:15:38 -04:00
|
|
|
extern int keyboard_ismsexit(void);
|
|
|
|
|
extern void keyboard_set_is_amstrad(int ams);
|
|
|
|
|
|
2023-04-19 23:34:32 +02:00
|
|
|
extern uint8_t kbc_at_dev_queue_pos(atkbc_dev_t *dev, uint8_t main);
|
|
|
|
|
extern void kbc_at_dev_queue_add(atkbc_dev_t *dev, uint8_t val, uint8_t main);
|
|
|
|
|
extern void kbc_at_dev_reset(atkbc_dev_t *dev, int do_fa);
|
|
|
|
|
extern atkbc_dev_t *kbc_at_dev_init(uint8_t inst);
|
2017-11-05 01:57:04 -05:00
|
|
|
|
2017-10-25 05:30:06 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-09-18 17:15:38 -04:00
|
|
|
#endif /*EMU_KEYBOARD_H*/
|