9.13.12.4 Syntax

Indentations in the syntax below indicate a wrapped line. If a line wraps and is not indented, then it should appear on one line; you may need to expand your help window to view the syntax correctly.

  • Custom serialization data file =
  • <hex region data list> | <decimal region data list> | <binary region data list> | <ascii text data list>
  • Hex region data list = <hex data> <new line> { <hex data> <new line> }
  • Decimal region data list = <decimal data> <new line> { <decimal data> <new line> }
  • Binary region data list = <binary data> <new line> { <binary data> <new line> }
  • ASCII text region data list = <ascii text data> <new line> { <ascii text data> <new line> }
  • hex data = <hex digit> { <hex digit> }
  • decimal data = <decimal digit> { <decimal digit> }
  • binary data = <binary digit> { <binary digit> }
  • ASCII text data = <ascii character> { <ascii character> }
  • new line = LF
  • binary digit = '0' | '1'
  • decimal digit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'
  • hex digit = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'A' | 'B' | 'C' | 'D' | 'E' | 'F' | 'a' | 'b' | 'c' | 'd' | 'e' | 'f'
  • ascii character = characters from SP (0x20) to '~' (0x7E)