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