CCI

CCI

See also: NCSD.

This page documents the format of NCSD. CTR cart images (CCI) is NCSD, but is used for other things as well. CSU is NCSD used for system updates and development tools.

This is a container format which generally holds CXI files inside.

Overview #

NCSD images start with a NCSD header, followed by up to a maximum of 8 partitions according to spec. The first partition(NCCH 0) usually starts at 0x4000, this is generally the main NCCH executable. The following info on partitions 1, 2, and 7 are only valid for .CCI. The second partition(NCCH 1) contains the game “Manual”(title ID for the .CXI containing the Manual always starts with ‘0005’). The third partition(NCCH 2) contains the download play “Child”(The title ID for the NCCH containing the Child always starts with ‘0006’). The eighth block(NCCH 7) contains “Update Data”(The title ID for the NCCH containing the Update Data always starts with ‘8000’) The format of partitions can be determined from the partition FS flags, while the contents can be determined from the partitions flags.

NCSD header #

OffsetSizeDescription
0x0000x100RSA-2048 SHA-256 signature of the NCSD header
0x1004Magic Number ‘NCSD’
0x1044Size of the NCSD image, in media units (1 media unit = 0x200 bytes)
0x1088Title/Program ID
0x1108Partitions FS type
0x1188Partitions crypt type
0x1200x40=(4+4)*8Offset & Length partition table
0x1600x20Exheader SHA-256 hash
0x1800x4Additional header size
0x1840x4Sector zero offset
0x1888Partition Flags: byte[5]-byte[7] indicate content type ( system update, application, manual, … ) size of media units ( 512*2^byte[6] ) and encryption.
0x1900x40=8*8Partitions’ Title ID table
0x1D00x28Reserved
0x1F88Unknown
0x2004Always 0xFFFFFFFF
0x204252Padding?
0x3004Used ROM size in bytes
0x30428Padding
0x3208NVer Title ID (Only Present in retail .CCI)
0x3288NVer Title Version (Only Present in retail .CCI)

Parts of the first NCCH block’s header are found around 0x1000 for whatever reason. NCSD can hold up to 8 partitions. (i.e. Mario Kart 7 holds 4 NCCHs, most we’ve seen so far)

The region-specific NVer title for this NCSD presumably must exist on NAND. The NVer title version may also be used to check whether a system update is required before running the app.

Category:File formats