mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 18:15:06 +01:00
973d8b2005
*Converted every 4 spaces to a tab to make the source consistent on those
8 lines
149 B
C
8 lines
149 B
C
#include <stdio.h>
|
|
#include <ogcsys.h>
|
|
|
|
u32 swap32(u32 x)
|
|
{
|
|
return (x >> 24) | ((x << 8) & 0x00FF0000UL) | ((x >> 8) & 0x0000FF00UL) | (x << 24);
|
|
}
|