Marker

Marker STRUC
    mkRecordType    db 0F1h
    mkLength        dw ?
    mkPad           db ? dup(0)
Marker ENDS

The Marker record marks the end of the object modules and the beginning of the dictionary.

Members

mkRecordType

Specifies the record type. This member must be 0F1h.

mkLength

Specifies the number of bytes remaining in the record. This member must be set so that the dictionary begins on a 512-byte boundary.

mkPad

Contains any remaining bytes needed to pad the marker record to the length specified by the mkLength member. These bytes are not used.

Comments

As with the LibraryHeader record, the last byte in this record is not a checksum.