mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-08 19:32:39 +08:00
11 lines
257 B
C
11 lines
257 B
C
|
|
#ifndef _UTIL_UNITS_H
|
|
#define _UTIL_UNITS_H
|
|
|
|
/* useful unit macros for constants */
|
|
#define _KB_bytes(x) (((Bitu)x) << (Bitu)10UL)
|
|
#define _MB_bytes(x) (((Bitu)x) << (Bitu)20UL)
|
|
#define _GB_bytes(x) (((Bitu)x) << (Bitu)30UL)
|
|
|
|
#endif /* _UTIL_UNITS_H */
|