Definition at line 2073 of file nand_MT29F_lld.c.
{ #ifdef LITTLE_ENDIAN return ((MT_uint32) ((byte0 << 24) | (byte1 << 16) | (byte2 << 8) | byte3)); #endif #ifdef BIG_ENDIAN return ((MT_uint32) ((byte3 << 24) | (byte2 << 16) | (byte1 << 8) | byte0)); #endif }