SREC (file format)
Motorola S-record is a file format, created by Motorola, that conveys binary information as hex values in ASCII text form. This file format may also be known as SRECORD, SREC, S19, S28, S37. It is commonly used for programming flash memory in microcontrollers, EPROMs, EEPROMs, and other types of programmable logic devices. In a typical application, a compiler or assembler converts a program's source code to machine code and outputs it into a HEX file. The HEX file is then imported by a programmer to "burn" the machine code into non-volatile memory, or is transferred to the target system for loading and execution.
Overview
The S-record format was created in the mid-1970s for the Motorola 6800 processor. Software development tools for that and other embedded processors would make executable code and data in the S-record format. PROM programmers would then read the S-record format and "burn" the data into the PROMs or EPROMs used in the embedded system.Other hex formats
There are other ASCII encoding with a similar purpose. BPNF, BHLF, and B10F were early binary formats, but they are neither compact nor flexible. Hexadecimal formats are more compact because they represent 4 bits rather than 1 bit per character. Many, such as S-record, are more flexible because they include address information so they can specify just a portion of a PROM. Intel HEX format was often used with Intel processors. TekHex is another hex format that can include a symbol table for debugging.Format
Record structure
An SREC format file consists of a series of ASCII text records. The records have the following structure from left to right:- Record type, two characters, an uppercase letter "S" then a digit "0" to "9", defining the type of record.
- Byte count, two hex digits, indicating the number of bytes that follow in the rest of the record. This field has a minimum value of 3 for 16-bit address field plus 1 checksum byte, and a maximum value of 255.
- Address, four / six / eight hex digits as determined by the record type. The address bytes are arranged in big endian format.
- Data', a sequence of 2n hex digits, for n bytes of the data. For S1/S2/S3 records, a maximum of 32 bytes per record is typical since it will fit on an 80 character wide terminal screen, though 16 bytes would be easier to visually decode each byte at a specific address.
- Checksum, two hex digits, the least significant byte of ones' complement of the sum of the values represented by the two hex digit pairs for the byte count, address and data fields. See example section for a detailed checksum example.
Text line terminators
Programs that create HEX records typically use line termination characters that conform to the conventions of their operating systems. For example, Linux programs use a single LF character character to terminate lines, whereas Windows programs use a CR character followed by a LF character.
Record types
The following table describes 10 possible S-records. S4 is reserved and not currently defined. S6 was originally reserved but was later redefined.Record Field | Record Purpose | Address Field | Data Field | Record Description |
S0 | Header | 16-bit "0000" | This record contains vendor specific ASCII text comment represented as a series of hex digit pairs. It is common to see the data for this record in the format of a null-terminated string. The text data can be anything including a mixture of the following information: file/module name, version/revision number, date/time, product name, vendor name, memory designator on PCB, copyright notice. It is common to see: 48 44 52 which is the ASCII H, D, and R - "HDR". | |
S1 | Data | 16-bit Address | This record contains data that starts at the 16-bit address field. This record is typically used for 8-bit microcontrollers, such as AVR, PIC, 8051, 68xx, 6502, 80xx, Z80. The number of bytes of data contained in this record is "Byte Count Field" minus 3. | |
S2 | Data | 24-bit Address | This record contains data that starts at a 24-bit address. The number of bytes of data contained in this record is "Byte Count Field" minus 4. | |
S3 | Data | 32-bit Address | This record contains data that starts at a 32-bit address. This record is typically used for 32-bit microcontrollers, such as ARM and 680x0. The number of bytes of data contained in this record is "Byte Count Field" minus 5. | |
S4 | Reserved | This record is reserved. | ||
S5 | Count | 16-bit Count | This optional record contains a 16-bit count of S1/S2/S3 records. This record is used if the record count is less than or equal to 65,535, otherwise S6 record would be used. | |
S6 | Count | 24-bit Count | This optional record contains a 24-bit count of S1/S2/S3 records. This record is used if the record count is less than or equal to 16,777,215. If less than 65,536, then S5 record would be used. NOTE: This newer record is the most recent change. | |
S7 | Start Address | 32-bit Address | This record contains the starting execution location at a 32-bit address. This is used to terminate a series of S3 records. If a SREC file is only used to program a memory device and the execution location is ignored, then an address of zero could be used. | |
S8 | Start Address | 24-bit Address | This record contains the starting execution location at a 24-bit address. This is used to terminate a series of S2 records. If a SREC file is only used to program a memory device and the execution location is ignored, then an address of zero could be used. | |
S9 | Start Address | 16-bit Address | This record contains the starting execution location at a 16-bit address. This is used to terminate a series of S1 records. If a SREC file is only used to program a memory device and the execution location is ignored, then an address of zero could be used. |
Record order
Although some Unix documentation states "the order of S-records within a file is of no significance and no particular order may be assumed", in practice most software has ordered the SREC records. The typical record order starts with a S0 header record, continues with a sequence of one or more S1/S2/S3 data records, may have one optional S5/S6 count record, and ends with one appropriate S7/S8/S9 termination record.; S19-style 16-bit address records
- S0
- S1
- S5
- S9
- S0
- S2
- S5
- S8
- S0
- S3
- S5
- S7
Limitations
Data field - Some documentation recommends a maximum of 32 bytes of data in this field. The minimum amount of data for S0/S1/S2/S3 records is zero. The maximum amount of data varies depending on the size of the address field. Since the Byte Count field can't be higher than 255, then the maximum number of bytes of data is calculated by 255 minus minus. S0/S1 records support up to 252 bytes of data. S2 record supports up to 251 bytes of data. S3 record supports up to 250 bytes of data.
Comments - The SREC file format does not support comments. Some software ignores all text lines that do not start with "S" and ignores all text after the checksum field; that extra text is sometimes used for comments. For example, the CCS PIC compiler supports placing a ";" comment line at the top or bottom of an Intel HEX file, and its manuals states "some programmers do not like comments at the top of the hex file", which is why the compiler has the option of placing the comment at the bottom of the hex file.
Examples
; Color legendChecksum calculation
The following example record:is decoded to show how the checksum value is calculated as follows:
- Add: Add each byte 0x13 + 0x7A + 0xF0 + 0x0A + 0x0A + 0x0D + 0x00 +... + 0x00 = 0x19E total.
- Mask: Keep the least significant byte of the total = 0x9E.
- Complement: Compute ones' complement of least significant byte = 0x61.
16-bit memory address