/// Define the data encoding for the processor-specific data
////// Data define possible values for the encoding
/// Its store in the sixth byte of the identifaction 16 bits called `e_ident`
pubstructDATA{}implDATA{/// Unknow data encoding
pubconstNONE:u8=0;/// Little endian data encoding
pubconstLE:u8=1;/// Big endian data encoding
pubconstBE:u8=2;}