blob: 9b9eeb2890d91993cb8b34757dd4b0f86d97d5fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// sid.h
//
// 20060803 Markku Alén
#ifndef __SID_H__
#define __SID_H__ 1
void start_record(unsigned int frequency, unsigned char *wave_buf, unsigned int wave_max_len);
unsigned int stop_record(void);
void sid_init(void);
int sid_read(int address);
void sid_write(int address, int data);
#endif
|