JohnZombie

Target(1998) - possible RPL file format

May 21st, 2015
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.44 KB | None | 0 0
  1. typedef struct rpl_entry{
  2.     uint32_t entry_offset;
  3.     char entry_name[8]; /* if name is 8 characters long there won't be 0-termination */
  4.     uint32_t entry_size;
  5. }rpl_entry_t;
  6.    
  7.  
  8.  
  9. typedef struct rpl_header{
  10.     uint32_t identifier;    /* 0x1A4C5052 */
  11.     uint32_t entry_count;
  12.     rpl_entry_t rpl_entryrecord[entry_count]; /* i know this isn't correct, but huh this is just pseudocode to describe the file format */
  13. } rpl_header_t;
  14.  
  15.  
  16. byte *raw_data;
Advertisement
Add Comment
Please, Sign In to add comment