1
0
Fork 0

Added init functions for opl and cms subsystems

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1698
This commit is contained in:
Sjoerd van der Berg 2004-03-03 15:47:06 +00:00
parent 74b2f10fe6
commit 30e64fda9b

View file

@ -19,8 +19,13 @@
#ifndef _HARDWARE_H_
#define _HARDWARE_H_
class Section;
enum OPL_Mode {
OPL_none,OPL_cms,OPL_opl2,OPL_dualopl2,OPL_opl3
};
void OPL_Init(Section* sec,OPL_Mode,Bitu rate);
void CMS_Init(Section* sec,Bitu rate);
#endif