INTEL HEX FILE FORMAT
INTEL HEX FILE FORMAT (Intel Hexadesimal Dosya Formatı) :llaaaatt[dd...]cc Each group of letters corresponds to a different field, and each letter represents a single hexadecimal digit. Each field is composed of at least two hexadecimal digits-which make up a byte-as described below: * *:* is the colon that starts every Intel HEX record. * */ll/* is the record-length field that represents the number of data bytes (*dd*) in the record. * */aaaa/* is the address field that represents the starting address for subsequent data in the record. * */tt/* is the field that represents the HEX record type, which may be one of the following: *00* - data record *01* - end-of-file record *02* - extended segment address record *04* - extended linear address record * */dd/* is a data field that represents one byte of data. A record may have multiple data bytes. The number of data bytes in the record must match the number speci...