OSRoundDown32B

C Specification

#include <revolution/os.h>
#define OSRoundDown32B(x)       \
(((u32)(x)) & ~(32 - 1))

Arguments

x Pointer or address.

Return Values

An unsigned 32-bit integer (u32) rounded down to the 32-byte lower boundary.

Description

Rounds x down to the 32-byte lower boundary.

See Also

Address Conversion Functions, OSRoundUp32B

Revision History

03/01/2006 Initial version.