This commit is contained in:
twinaphex 2020-09-19 17:32:38 +02:00
parent b489a78a05
commit 1bc60018bf

View File

@ -61,46 +61,4 @@ typedef uint64_t uint64;
#endif
typedef struct
{
union
{
struct
{
#ifdef MSB_FIRST
uint8 High;
uint8 Low;
#else
uint8 Low;
uint8 High;
#endif
} Union8;
uint16 Val16;
};
} Uuint16;
typedef struct
{
union
{
struct
{
#ifdef MSB_FIRST
Uuint16 High;
Uuint16 Low;
#else
Uuint16 Low;
Uuint16 High;
#endif
} Union16;
uint32 Val32;
};
} Uuint32;
#define MDFN_COLD
#undef require
#define require( expr ) assert( expr )
#endif