10 lines
135 B
C
10 lines
135 B
C
|
#ifndef _PSG_H_
|
||
|
#define _PSG_H_
|
||
|
|
||
|
void psgInit();
|
||
|
|
||
|
void psgPlayTone(uint8_t channel, t_octave octave, t_note note);
|
||
|
|
||
|
|
||
|
#endif // _PSG_H_
|