Bin To | Nsp

files, these are often referred to in conversion discussions. They are wrapped into NSP "forwarders" so homebrew apps appear as tiles on the main menu. Game Assets & Save Data (.bin):

if hasattr(self, 'tmd_path'): nsp.seek(0, 2) with open(self.tmd_path, 'rb') as f: nsp.write(f.read()) self._write_padding(nsp) bin to nsp

# Write actual data nsp.seek(sec['offset']) with open(sec['path'], 'rb') as bin_f: nsp.write(bin_f.read()) self._write_padding(nsp) section_offset = nsp.tell() files, these are often referred to in conversion discussions

Build/sign the NSP