Our great sponsors
-
Here is the repo of what I have so far: https://github.com/SteveCookTU/advent-of-code-nx
-
The SDK used by most, if not all switch developers, is libnx. As a Rust enthusiast, I wanted the core logic in Rust so I just built the display in C/C++ which the switch library is written in.
-
SonarQube
Static code analysis for 29 languages.. Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
-
There are two crates which I would recommend. There is the official ctru-rs that is a safe wrapper around bindings for the C library libctru.
-
There are two crates which I would recommend. There is the official ctru-rs that is a safe wrapper around bindings for the C library libctru.
-
The other is a unofficial and only on github crate that is an almost full Rust implementation of libctru that allows for more control but utilizes a lot more unsafe because of system calls. This still includes some bindings from the original library. It can be found here.
-
A great example of usage of the second crate can be found here which creates a WASM plugin system inspired by NTR.