-
-
Notifications
You must be signed in to change notification settings - Fork 2
Common file format
XorTroll edited this page Apr 27, 2024
·
1 revision
This page covers common file structures/sections used by several documented DS file formats.
Many file formats start with the following header structure:
| Offset | Size | Description |
|---|---|---|
| 0x00 | 0x04 | File magic |
| 0x04 | 0x02 | Byte order |
| 0x06 | 0x02 | Version |
| 0x08 | 0x04 | Total file size |
| 0x0C | 0x02 | This header size (0x10) |
| 0x0E | 0x02 | Section count |
Many formats contain sections starting with the following header structure:
| Offset | Size | Description |
|---|---|---|
| 0x00 | 0x04 | Block magic |
| 0x04 | 0x04 | Total block size |
-
DS specifications
-
NitroEdit