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
/**
* @ingroup emu68_devel
* @file emu68/ym_dump.h
* @author Benjamin Gerard
* @date 2009/02/10
* @brief sc68 register dump YM-2149 emulator header.
*
*/
/** Setup function for sc68 dump ym engine.
*
* The ym_dump_setup() function sets ym dump engine for this ym
* emulator instance.
*
* @parm ym ym emulator instance to setup
* @retval 0 on success
* @retval -1 on failure
*/
int ;
/** Get/Set sc68 dump ym engine active state.
*
* @parm ym ym emulator instance to setup
* @parm val 0:disable 1:enable -1:current
* @return previous status
*/
int ;
typedef void ;
/** YM-2149 internal data structure for original emulator. */
;
/** YM-2149 emulator instance type */
typedef struct ym2149_dump_s ym_dump_t;