-
Notifications
You must be signed in to change notification settings - Fork 1
/
ppi.h
60 lines (43 loc) · 1.53 KB
/
ppi.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
* @file
* @author Miguel Vanhove / Kyuran <[email protected]>
* @author Ludovic Delplanque <[email protected]> for the original version pc-cpc v0.1x (02/02/2004)
* @version 2.0
*
* @section LICENSE
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details at
* https://www.gnu.org/copyleft/gpl.html
*
* @section DESCRIPTION
*
* PPI 8255 emulation
*/
#include "crocods.h"
#ifndef PPI_H
#define PPI_H
#ifdef __cplusplus
extern "C" {
#endif
void WritePPI( core_crocods_t *core, int adr, int val );
int ReadPPI( core_crocods_t *core, int adr );
void WriteCas( core_crocods_t *core );
void ReadCas( core_crocods_t *core );
void OpenTapWrite( core_crocods_t *core, char * Nom );
void OpenTapRead( core_crocods_t *core, char * Nom );
void CloseTap( core_crocods_t *core );
void ResetPPI( core_crocods_t *core);
BOOL Keyboard_HasBeenScanned(core_crocods_t *core);
void Keyboard_Reset(core_crocods_t *core);
#ifdef __cplusplus
}
#endif
#endif