BLOOD+ One Night Kiss BIN: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks (Created page with "{{GRAFPageHeader}} == BIN == * ''' Format Type ''': Archive <br> * ''' [http://en.wikipedia.org/wiki/Endianness Endian Order] ''': Little Endian <br> * ''' Signature '''...") |
imported>Ikskoks |
||
| (10 intermediate revisions by the same user not shown) | |||
| Line 13: | Line 13: | ||
// header | // header | ||
4 bytes (char) - signature // "LF 2" | 4 bytes (char) - signature // "LF 2" | ||
4 bytes (uint32) - version? // 1 or 2 | |||
4 bytes (uint32) - number of files | |||
4 bytes (uint32) - info table offset | |||
// name table | |||
number_of_files * | |||
{ | |||
x bytes (char) - file name // e.g. "HJI001.RSL" | |||
} | |||
x bytes - padding // filled with 0xFF values | |||
// info table | |||
number_of_files * | |||
{ | |||
4 bytes (uint32) - file offset (in sectors) | |||
4 bytes (uint32) - file size (in bytes) | |||
} | |||
// data | |||
number_of_files * | |||
{ | |||
x bytes - file data | |||
x bytes - padding // filled with 0x00 values | |||
} | |||
</pre> | </pre> | ||
</div> | </div> | ||
| Line 27: | Line 53: | ||
=== QuickBMS Script === | === QuickBMS Script === | ||
* [https://github.com/bartlomiejduda/Tools/blob/master/NEW%20Tools/BLOOD%2B%20One%20Night%20Kiss/Blood_One_Night_Kiss_BIN_script.bms Blood_One_Night_Kiss_BIN_script.bms] | |||
=== Compatible Programs === | === Compatible Programs === | ||
| Line 35: | Line 61: | ||
[[Category:Complete | [[Category:Complete Complete|BLOOD+ One Night Kiss BIN]] | ||
[[Category:Platform PS2|BLOOD+ One Night Kiss BIN]] | [[Category:Platform PS2|BLOOD+ One Night Kiss BIN]] | ||
[[Category:CE None|BLOOD+ One Night Kiss BIN]] | [[Category:CE None|BLOOD+ One Night Kiss BIN]] | ||
[[Category:Format_Archive | Type: Archive]] | [[Category:Format_Archive | Type: Archive]] | ||
[[Category:Extension_bin | Extension: bin]] | [[Category:Extension_bin | Extension: bin]] | ||
[[Category:File Format]] | [[Category:File Format]] | ||
Latest revision as of 21:55, 1 June 2022
Back to index | Edit this page
BIN
- Format Type : Archive
- Endian Order : Little Endian
- Signature : LF 2
Format Specifications
// header
4 bytes (char) - signature // "LF 2"
4 bytes (uint32) - version? // 1 or 2
4 bytes (uint32) - number of files
4 bytes (uint32) - info table offset
// name table
number_of_files *
{
x bytes (char) - file name // e.g. "HJI001.RSL"
}
x bytes - padding // filled with 0xFF values
// info table
number_of_files *
{
4 bytes (uint32) - file offset (in sectors)
4 bytes (uint32) - file size (in bytes)
}
// data
number_of_files *
{
x bytes - file data
x bytes - padding // filled with 0x00 values
}
Notes and Comments
None.
Games
List of games using this file format:
- BLOOD+ One Night Kiss (PS2) (*.BIN)
QuickBMS Script
Compatible Programs
None.