DOSBox-X
|
00001 00002 #ifndef _UTIL_UNITS_H 00003 #define _UTIL_UNITS_H 00004 00005 /* useful unit macros for constants */ 00006 #define _KB_bytes(x) (((Bitu)x) << (Bitu)10UL) 00007 #define _MB_bytes(x) (((Bitu)x) << (Bitu)20UL) 00008 #define _GB_bytes(x) (((Bitu)x) << (Bitu)30UL) 00009 00010 #endif /* _UTIL_UNITS_H */ 00011