Mega Man Powered Up DAT LOC: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
(Created page with "{{GRAFPageHeader}} == DAT, LOC == * ''' Format Type ''': Archive <br> * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> === Format S...")
imported>Ikskoks
Line 12: Line 12:
// DAT archive file format
// DAT archive file format


//header
num_of_files *
8 bytes (char) - signature // "SPUMAPDT"
{
  x bytes - file data
}
</pre>
</div>


//TODO
 
<div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;">
<pre>
// LOC file format
 
num_of_files *
{
  4 bytes (uint32) - file offset
  4 bytes (uint32) - file size
}
</pre>
</pre>
</div>
</div>

Revision as of 11:57, 18 July 2021

Back to index | Edit this page

DAT, LOC


Format Specifications

// DAT archive file format

num_of_files *
{
   x bytes - file data
}


// LOC file format

num_of_files *
{
   4 bytes (uint32) - file offset
   4 bytes (uint32) - file size
}

MultiEx BMS Script

Not written yet.

QuickBMS Script

Notes and Comments

  • In "Mega Man Powered Up" on PSP there are two files, rockman_pack.dat with all data and rockman_pack.loc with offsets.
  • Files inside archive are compressed with PUYO_LZ01 compression.

Games

List of games using this file format:

  • Mega Man Powered Up (PSP) (*.DAT \ *.LOC)
  • Mega Man Maverick Hunter X

Compatible Programs

None.