Skip to content
optixx edited this page Feb 13, 2016 · 1 revision

qdinc

Qdinc is a partial uploader that is useful for developers. Normally you work on a snes project and you keep uploading yours builds for testing purpose on the orginal hardware. So qdinc can be used with the normal Quickdev16 vanilla firmware. First you do a full upload. After changing and rebuilding your project, qdinc only uploads the resulting diff of the binary. This normally reduces the upload time by a magnitude. Thanks to jix for contributing this tool.

You can checkout and compile qdinc:

git clone git://github.com/optixx/quickdev16.git
cd /quickdev16/tools/qdinc
make

Do an initial upload:

qdinc -i rom.smc

Work on your project and re-compile your rom. Then you can start a partial upload:

qdinc rom.smc

Skip backup headers:

qdinc -s rom.smc

Force Hirom mode:

qdinc -h rom.smc

qdips

Qdips is a ips live patching tool. Thanks to gilligan for contributing this tool.

You can checkout and compile qdinc:

git clone git://github.com/optixx/quickdev16.git
cd /quickdev16/tools/qdips
make

Send ips patch file:

qdips patchfile.ips

Force Hirom mode:

qdips -h patchfile.ips
Clone this wiki locally