1 /*
2  * Hatari scc.h
3  *
4  * 85C30 emulation code - declarations
5  *
6  * This file is distributed under the GNU General Public License, version 2
7  * or at your option any later version. Read the file gpl.txt for details.
8  */
9 
10 #ifndef SCC_H
11 #define SCC_H
12 
13 bool SCC_IsAvailable(CNF_PARAMS *cnf);
14 void SCC_Init(void);
15 void SCC_UnInit(void);
16 void SCC_MemorySnapShot_Capture(bool bSave);
17 void SCC_Reset(void);
18 void SCC_IRQ(void);
19 int SCC_doInterrupt(void);
20 void SCC_IoMem_ReadByte(void);
21 void SCC_IoMem_WriteByte(void);
22 
23 #endif /* SCC_H */
24