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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* @ingroup io68_lib
* @file io68/io68.h
* @author Benjamin Gerard
* @date 1999/03/20
* @brief all io68 headers.
*
*/
/* Copyright (C) 1998-2011 Benjamin Gerard */
/**
* @defgroup io68_lib Chipset emulators.
* @ingroup sc68_lib
*
* @{
*/
/** IO chip init parameters. */
/* typedef struct { */
/* paula_parms_t paula; /\**< paula init parms. *\/ */
/* mw_parms_t mw; /\**< microwire init parms. *\/ */
/* ym_parms_t ym; /\**< ym-2149 init parms. *\/ */
/* int *argc; /\**< Argument count. *\/ */
/* char **argv; /\**< Argument array. *\/ */
/* } io68_init_t; */
/** Initialize the io68 library.
*
* The io68_init() function setup chipset emulator engines.
*
* @param argc pointer to argument count.
* @param argv argument array.
* @retval 0 on success
* @retval -1 on error
*/
int ;
/** Shutdown the io68 library.
*
* The io68_shutdown() function cleanup emulator engines. It should
* call the corresponding shutdown function for each existing
* chipset emulators. It should be call only after all chipset
* instances have been released.
*/
void ;
/** Destroy an chipset instance.
*
* The io68_destroy() function calls the io68_t::destroy() callback
* function.
*
* @param io chipset instance
*/
void ;
/**
* @}
*/
/* #ifndef _IO68_H_ */