ntrteam / flashcart_core

A hopefully reusable component for dealing with flashcart specific behavior.
GNU General Public License v3.0
128 stars 32 forks source link

flashcart_core

A hopefully reusable component for dealing with flashcart specific behavior.

Usage

End users cannot use this directly, and should use one of the following applications:

Supported Carts

From Left to Right: Acekard 2i HW81, Acekard 2i HW44, R4i Gold 3DS RTS, R4i Gold 3DS, R4i Ultra, R4 3D Revolution, DSTT, R4i-SDHC RTS Lite, R4i-SDHC Dual-Core, R4-SDHC Gold Pro, R4i 3DS RTS, Infinity 3 R4i, R4i Gold 3DS Deluxe Edition, R4i-B9S, R4iSDHC Dual-Core (r4isdhc.com.cn), Ace3DS Plus, Gateway Blue

Note: Flashcarts from r4isdhc.com tend to have yearly re-releases; most versions of these carts (2014-2018) should work but not all have been tested. Models from 2013 or earlier differ in hardware but could be similar to the current R4 Dual Core flashcarts from r4isdhc.hk. While the R4 Dual Core (r4isdhc.hk) works, r4isdhc.com 2013 and earlier flashcarts may not.

Requesting support for a new cart

We get a lot of requests for new carts to be supported. Before requesting support, please read the existing open and closed issues to see if your cart has already been considered or not. If you'd like your cart to be supported please provide, at the very least, the following information:

Developer Usage

If you want to use flashcart_core in your project, you will need libncgc as well.

You will need to reopen the flashcart_core::platform namespace, and inside it define:

  1. showProgress(), used to show current percentage of a given operation (e.g. drawing a green rectangle to represent percentage)
  2. logMessage(), used to log things from the various flashcart classes to something that the user can read, e.g. a text file or printouts to the screen. You will need va_list for this.
  3. getBlowfishKey(), used by the various flashcart classes to retrieve blowfish keys. You have to provide these blowfish keys yourself through e.g. a u8 array or using a .bin linker.

Then you can make an object from one of the flashcart_core classes, and then use the public functions inside that class. For example:

R4i_Gold_3DS R4iGold;
R4iGold.initialize();
R4iGold.injectNtrBoot(blowfish_key, firm, firm_size);

Your Makefile should create libncgc.a first, then compile your project normally using flashcart_core.

Porting flashcart_core to a new flashcart

Information needed for a new cart.

Licensing

This software is licensed under the terms of the GPLv3. You can find a copy of the license in the LICENSE file.

Credits (in alphabetical order)