Micron MT29F NAND driver
MT_uint16 __as_uint16 ( MT_uint8  byte0,
MT_uint8  byte1 
)

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
}