Retro64 NDX WAD: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks |
imported>Ikskoks |
||
| Line 12: | Line 12: | ||
<pre> | <pre> | ||
// NDX file format | // NDX file format | ||
num_of_files * | num_of_files * | ||
{ | { | ||
| Line 25: | Line 26: | ||
<pre> | <pre> | ||
// WAD file format | // WAD file format | ||
num_of_files * | num_of_files * | ||
{ | { | ||
Revision as of 21:03, 12 June 2022
Back to index | Edit this page
NDX, WAD
- Format Type : Archive
- Endian Order : Little Endian
- Signature : None
Format Specifications
// NDX file format
num_of_files *
{
64 bytes (char) - file path + padding // e.g. "audio\airball.ogg"
4 bytes (uint32) - file offset
4 bytes (uint32) - file size
}
// WAD file format
num_of_files *
{
x bytes - file data
}
Notes and Comments
- NDX is an index file and WAD file stores all the data.
Games
List of games using this file format:
- Bugatron (PC) (*.NDX / *.WAD)
- Bugatron Worlds (PC) (*.NDX / *.WAD)
QuickBMS Script
Compatible Programs
None.