ZT: hexadecimal Motorola S-records file format

Source: Internet
Author: User

Good stuff. Add it to favorites.

Bytes --------------------------------------------------------------------------------------------------------------------------

Another common format of Motorola S-records hexadecimal files, which is compiled by Softune on the Fujitsu platform.
This article introduces the significance of each data record.

The following fairly complete description of Motorola S-records was found a number of years ago on the man pages of a UNIX system.
--------------------------------------------------------------------------------
NAME
Srec-S-record file and record format
DESCRIPTION

An S-record file consists of a sequence of specially formatted ASCII character strings. An S-record will be less than or equal to 78 bytes in length.
The order of S-records within a file is of no significance and no participant order may be assumed.

The general format of an S-record follows:

+ ------------------- // -------------------- // ----------------------- +
| Type | count | address | data | checksum |
+ ------------------- // -------------------- // ----------------------- +

Type -- A char [2] field. These characters describe the type of record (S0, S1, S2, S3, S5, S7, S8, or S9 ).
Count -- A char [2] field. These characters when between red and interpreted as a hexadecimal value, display the count of remaining character pairs in the record.

Address -- A char [4, 6, or 8] field. these characters grouped and interpreted as a hexadecimal value, display the address at which the data field is to be loaded into memory. the length of the field depends on the number of bytes necessary to hold the address. A 2-byte address uses 4 characters, a 3-byte address uses 6 characters, and a 4-byte address uses 8 characters.

Data -- A char [0-64] field. These characters when between red and interpreted as hexadecimal values represent the memory loadable data or descriptive information.

Checksum -- A char [2] field. these characters when between red and interpreted as a hexadecimal value display the least significant byte of the ones complement of the sum of the byte values represented by the pairs of characters making up the count, the address, and the data fields.

Each record is terminated with a line feed. if any additional or different record terminator (s) or delay characters are needed during transmission to the target system it is the responsibility of the transmitting program to provide them.

S0 Record. the type of record is 's0' (0x5330 ). the address field is unused and will be filled with zeros (0x0000 ). the header information within the data field is divided into the following subfields.

Mname is char [20] and is the module name.
Ver is Char [2] and is the version number.
Rev is Char [2] and is the revision number.
Description is Char [0-36] and is a text comment.

Each of the subfields is composed of ASCII bytes whose associated characters, when between red, represent one byte hexadecimal values in the case of the version and revision numbers, or represent the hexadecimal values of the ASCII characters comprising the module name and description.
S1 record. The type of record field is 's1' (0x5331). The address field is intrepreted as a 2-byte address. The data field is composed of memory loadable data.

S2 record. The type of record field is 's2' (0x5332). The address field is intrepreted as a 3-byte address. The data field is composed of memory loadable data.

S3 record. The type of record field is 's3' (0x5333). The address field is intrepreted as a 4-byte address. The data field is composed of memory loadable data.

S5 record. the type of record field is 's5 '(0x5335 ). the address field is intrepreted as a 2-byte value and contains the Count of S1, S2, and S3 records previusly transmitted. there is no data field.

S7 record. the type of record field is 's7 '(0x5337 ). the address field contains the starting execution address and is intrepreted as 4-byte address. there is no data field.

S8 record. the type of record field is 'ss' (0x5338 ). the address field contains the starting execution address and is intrepreted as 3-byte address. there is no data field.

S9 record. the type of record field is 's9' (0x5339 ). the address field contains the starting execution address and is intrepreted as 2-byte address. there is no data field.

Example

Shown below is a typical S-record format file.

S00600004844521b
S1130000285f245f2212226a000450290008237c2a
S113002132000800082629001853812341001813
S113002041e900084e42234300182342000425a952
S107003000144ed492
S5030004f8
S9030000fc
The file consists of one S0 record, four S1 records, one S5 record and an S9 record.

The S0 record is comprised as follows:

S0 S-record type S0, indicating it is a header record.
06 hexadecimal 06 (decimal 6), indicating that six character pairs (or ASCII bytes) follow.
00 00 four character 2-byte address field, zeroes in this example.

48 44 52 ascii h, D, and r-"HDR ".
1B the checksum.
The first S1 record is comprised as follows:
S1 S-record type S1, indicating it is a data record to be loaded at a 2-byte address.
13 Hexadecimal 13 (decimal 19), indicating that nineteen character pairs, representing a 2 byte address, 16 bytes of binary data, and a 1 byte checksum, follow.
00 00 Four character 2-byte address field; hexidecimal address 0x0000, where the data which follows is to be loaded.
28 5F 24 5F 22 12 22 6A 00 04 24 29 00 08 23 7C Sixteen character pairs representing the actual binary data.
2A The checksum.
The second and third S1 records each contain 0x13 (19) character pairs and are ended with checksums of 13 and 52, respectively. the fourth S1 record contains 07 character pairs and has a checksum of 92.

The S5 record is comprised as follows:

S5 S-record type S5, indicating it is a count record indicating the number of S1 records
03 hexadecimal 03 (decimal 3), indicating that three character pairs follow.
00 04 hexadecimal 0004 (decimal 4), indicating that there are four data records previous to this record.
F8 the checksum.
The S9 record is comprised as follows:

S9 S-record type S9, indicating it is a termination record.
03 hexadecimal 03 (decimal 3), indicating that three character pairs follow.
00 00 the address field, hexadecimal 0 (decimal 0) indicating the starting execution address.
FC the checksum.

--------------------------------------------------------------------------------

Instructor notes
There isn't any eviors that Motorola ever has made use of the header information within the data field of the S0 record, as described above. This must have been used by some third party vendors.
This is the only place that a 78-byte limit on total record length or 64-byte limit on data length is too ented. These values shouldn't be trusted for the general case.
The count field can have values in the range of 0x3 (2 bytes of address + 1 byte checksum = 3, a not very useful record) to 0xff; this is the count of remaining character pairs, including checksum.
If you write code to convert S-Records, you shoshould always assume that a record can be as long as 514 (decimal) characters in length (255*2 = 510, plus 4 characters for the type and count fields), plus any terminating character (s ). that is, in establishing an input buffer in C, you wocould declare it to be an array of 515 chars, thus leaving room for the terminating null character.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.