oops - missed file!
This commit is contained in:
parent
5292cab48d
commit
84c3fe7220
|
@ -35,6 +35,15 @@ __extension__ typedef long long INT64;
|
|||
#endif
|
||||
#define OSD_CPU_H
|
||||
|
||||
/* U64 and S64 are used to wrap long integer constants. */
|
||||
#if defined(__GNUC__) || defined(_MSC_VER)
|
||||
#define U64(val) val##ULL
|
||||
#define S64(val) val##LL
|
||||
#else
|
||||
#define U64(val) val
|
||||
#define S64(val) val
|
||||
#endif
|
||||
|
||||
/* OPN */
|
||||
#define HAS_YM2203 1
|
||||
#define HAS_YM2608 1
|
||||
|
|
Loading…
Reference in New Issue