blob: 34c711d1e90419a3c4c0aa6c0b4afe314af978d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "sound/custom.h"
/* flags for init_pc_common */
#define PCCOMMON_KEYBOARD_PC 0
#define PCCOMMON_KEYBOARD_AT 1
void init_pc_common(running_machine *machine, UINT32 flags, void (*set_keyb_int_func)(int));
void pc_keyboard(void);
UINT8 pc_keyb_read(void);
void pc_keyb_set_clock(int on);
void pc_keyb_clear(void);
|