# 5. Write final 3DS file with open(output_3ds, 'wb') as out: out.write(ncsd) out.write(b'\x00' * (offset0 - 0x200)) # padding out.write(exefs) out.write(b'\x00' * (offset1 - (offset0 + exefs_size))) out.write(romfs)
# CXI to 3DS Converter Tool v1.0
# 5. Write final 3DS file with open(output_3ds, 'wb') as out: out.write(ncsd) out.write(b'\x00' * (offset0 - 0x200)) # padding out.write(exefs) out.write(b'\x00' * (offset1 - (offset0 + exefs_size))) out.write(romfs)
# CXI to 3DS Converter Tool v1.0