Savegames: Difference between revisions

Wwylele (talk | contribs)
Wwylele (talk | contribs)
The SAVE partition: Confirm some fields by matching FS:FormatSaveData parameters
Line 718: Line 718:
| 0x28
| 0x28
| 8
| 8
| FolderMap Offset
| Folder Hash Table Offset
|-
|-
| 0x30
| 0x30
| 4
| 4
| FolderMap Size
| Folder Hash Table Size / Bucket Count
|-
|-
| 0x34
| 0x34
| 4
| 4
| Unknown, FolderMap size-related
| Unknown, Folder Hash Table size-related
|-
|-
| 0x38
| 0x38
| 8
| 8
| FileMap Offset
| File Hash Table Offset
|-
|-
| 0x40
| 0x40
| 4
| 4
| FileMap Size
| File Hash Table Size / Bucket Count
|-
|-
| 0x44
| 0x44
| 4
| 4
| Unknown, FileMap size-related
| Unknown, File Hash Table size-related
|-
|-
| 0x48
| 0x48
Line 750: Line 750:
| 0x54
| 0x54
| 4
| 4
| Uknown, BlockMap size-related
| Unknown, BlockMap size-related
|-
|-
| 0x58
| 0x58
Line 774: Line 774:
| 0x70
| 0x70
| 4
| 4
| Folders Table unknown
| Maximum Folder Count
|-
|-
| 0x74
| 0x74
Line 790: Line 790:
| 0x80
| 0x80
| 4
| 4
| Files Table unknown
| Maximum File Count
|-
|-
| 0x84
| 0x84
Line 798: Line 798:
|}
|}


* The FolderMap and FileMap still unknown. They are tables of uint32. (These are probably folder/file path name hash tables for quick lookup? Similar as those in [[RomFS]] --[[User:Wwylele|Wwylele]] ([[User talk:Wwylele|talk]]) 11:35, 29 September 2016 (CEST))
* The folder and file hash table are tables of uint32. They are probably for quick lookup and are similar to those in [[RomFS]]
* The BlockMap is a map of the blocks in the filestore. An entry in the BlockMap is 2 uint32: {uint32 start_block; uint32 end_block; }. This is still being researched. (You can use [[3DSExplorer]] to see those maps.
* The BlockMap is a map of the blocks in the filestore. An entry in the BlockMap is 2 uint32: {uint32 start_block; uint32 end_block; }. This is still being researched. (You can use [[3DSExplorer]] to see those maps.