mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
Update KIP description in help text
This commit is contained in:
parent
818885e0e8
commit
5829c8078e
2 changed files with 14 additions and 14 deletions
24
README.md
24
README.md
|
@ -5,16 +5,16 @@ General purpose reading/extraction tool for Nintendo Switch file formats.
|
|||
* Meta (.npdm)
|
||||
* PartitionFS (and Sha256PartitionFS) (includes raw .nsp)
|
||||
* RomFS
|
||||
* N**X** Game**C**ard **I**mage (.xci)
|
||||
* **N**intendo **C**ontent **A**rchive (.nca)
|
||||
* **C**o**n**tent **M**e**t**adata (.cnmt)
|
||||
* **N**intendo **S**hared **O**bject (.nso)
|
||||
* **N**intendo **R**elocatable **O**bject (.nro)
|
||||
* **Ini**tial Process List (.ini)
|
||||
* **K**ernel **I**nitial **P**rocess (.kip)
|
||||
* **N**intendo **A**pplication **C**ontrol **P**roperty (.nacp)
|
||||
* ES **Cert**ificate (.cert)
|
||||
* ES **Ti**c**k**et (v2 only) (.tik)
|
||||
* NX GameCard Image (.xci)
|
||||
* Nintendo Content Archive (.nca)
|
||||
* Content Metadata (.cnmt)
|
||||
* Nintendo Shared Object (`NSO0`) (.nso)
|
||||
* Nintendo Relocatable Object (`NRO0`) (.nro)
|
||||
* Initial Program Bundle (`INI1`) (.ini)
|
||||
* Initial Program (`KIP1`) (.kip)
|
||||
* Nintendo Application Control Property (.nacp)
|
||||
* ES Certificate (.cert)
|
||||
* ES Ticket (v2 only) (.tik)
|
||||
|
||||
# Usage
|
||||
```
|
||||
|
@ -62,9 +62,9 @@ Usage: nstool [options... ] <file>
|
|||
--listsym Print Code Symbols.
|
||||
--insttype Specify instruction type [64bit|32bit] (64bit is assumed).
|
||||
|
||||
INI (Initial Process List)
|
||||
INI1 (Initial Program Bundle)
|
||||
nstool [--kipdir <dir>] <file>
|
||||
--kipdir Extract embedded KIPs to directory.
|
||||
--kipdir Extract embedded Initial Programs to directory.
|
||||
|
||||
ASET (Homebrew Asset Blob)
|
||||
nstool [--listfs] [--icon <file> --nacp <file> --fsdir <dir>] <file>
|
||||
|
|
|
@ -727,9 +727,9 @@ void nstool::SettingsInitializer::usage_text() const
|
|||
fmt::print(" --listapi Print SDK API List.\n");
|
||||
fmt::print(" --listsym Print Code Symbols.\n");
|
||||
fmt::print(" --insttype Specify instruction type [64bit|32bit] (64bit is assumed).\n");
|
||||
fmt::print("\n INI (Initial Process List)\n");
|
||||
fmt::print("\n INI (Initial Program Bundle)\n");
|
||||
fmt::print(" {:s} [--kipdir <dir>] <file>\n", BIN_NAME);
|
||||
fmt::print(" --kipdir Extract embedded KIPs to directory.\n");
|
||||
fmt::print(" --kipdir Extract embedded Inital Programs to directory.\n");
|
||||
fmt::print("\n ASET (Homebrew Asset Blob)\n");
|
||||
fmt::print(" {:s} [--listfs] [--icon <file> --nacp <file> --fsdir <dir>] <file>\n", BIN_NAME);
|
||||
fmt::print(" --listfs Print filesystem in embedded RomFS partition.\n");
|
||||
|
|
Loading…
Reference in a new issue