Definition at line 2061 of file nand_MT29F_lld.c.
{ #ifdef LITTLE_ENDIAN return ((MT_uint16) ((byte0 << 8) | byte1)); #endif #ifdef BIG_ENDIAN return ((MT_uint16) ((byte1 << 8) | byte0)); #endif }