oops - missed file!

This commit is contained in:
Barry Harris 2014-11-09 17:23:56 +00:00
parent 5292cab48d
commit 84c3fe7220
1 changed files with 9 additions and 0 deletions

View File

@ -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