20 lines
324 B
C
20 lines
324 B
C
#ifndef YMF262_HAL_H
|
|
#define YMF262_HAL_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct YMF262_HAL_Handle YMF262_HAL_Handle;
|
|
|
|
YMF262_HAL_Handle* YMF262_HAL_Create(uint32_t opl_clock, uint32_t cpu_clock);
|
|
void YMF262_HAL_Destroy(YMF262_HAL_Handle* handle);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |