usbloadergx/source/usbloader/utils.c

9 lines
167 B
C
Raw Normal View History

#include <stdio.h>
#include <ogcsys.h>
u32 swap32( u32 x )
{
return ( x >> 24 ) | ( ( x << 8 ) & 0x00FF0000UL ) | ( ( x >> 8 ) & 0x0000FF00UL ) | ( x << 24 );
}