Advertisement
Guest User

Untitled

a guest
Jun 1st, 2018
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. 4 bytes 'CSEQ'
  2. 2 bytes endianness
  3. 2 bytes header size
  4. 4 bytes version, little endian (major, minor, micro, bugfix), 1.1.0.0 = 0x01010000 = 00 00 01 01
  5. 4 bytes file size
  6. 4 bytes block count
  7.  
  8. [Repeat block count times]
  9. 4 bytes block ID (0x5000 = 'DATA', 0x5001 = 'LABL')
  10. 4 bytes block address
  11. 4 bytes block size
  12.  
  13.  
  14. [Structure of a block header]
  15. 4 bytes ASCII name
  16. 4 bytes size
  17.  
  18.  
  19. ['LABL' block]
  20. 8 byte [block header]
  21. 4 bytes number of entries
  22. [number of entries times]
  23. 4 bytes labelinfo ID (0x5100)
  24. 4 bytes offset to labelinfo(from beginning of block[after header])
  25. [labelinfo]
  26. 4 bytes ID (0x1F00)
  27. 4 bytes offset to some value(relative to beginning of 'DATA' block[after header])
  28. 4 bytes string length
  29. [string length] bytes string
  30.  
  31.  
  32. ['DATA' block]
  33. 8 byte [block header]
  34. [labelinfo offset]
  35. CSEQ data
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement