- Dec 28, 2018
-
-
Zach Hilman authored
Using a custom reimplementation of QWebEngineView and an injector script.
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
Needed for manual RomFS extraction, as Full generates an extra directory and Truncated generates variable results.
-
Zach Hilman authored
-
Lioncash authored
Provides extra information that makes it easier to tell if an executable being run is using a 36-bit address space or a 39-bit address space. While we don't support AArch32 executables yet, this also puts in distinguishing information for the 32-bit address space types as well.
-
Lioncash authored
In all cases that these functions are needed, the VMManager can just be retrieved and used instead of providing the same functions in Process' interface. This also makes it a little nicer dependency-wise, since it gets rid of cases where the VMManager interface was being used, and then switched over to using the interface for a Process instance. Instead, it makes all accesses uniform and uses the VMManager instance for all necessary tasks. All the basic memory mapping functions did was forward to the Process' VMManager instance anyways.
-
- Dec 27, 2018
-
-
Rodolfo Bogado authored
-
Zach Hilman authored
These functions come in a pair and are needed by Smash Ultimate, Minecraft, and Skyrim, amongst others.
-
Zach Hilman authored
-
Zach Hilman authored
This stores a file in the save directory called '.yuzu_save_size' which stores the two save sizes (normal area and journaled area) sequentially as u64s.
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
Serves no actual purpose in this instance besides making NACP's copy assignment deleted, which is not intended behavior.
-
Zach Hilman authored
Allows these functions to compile when T is not u8.
-
Lioncash authored
Like the other members related to memory regions, the attributes need to be reset back to their defaults as well.
-
- Dec 26, 2018
-
-
Lioncash authored
These are user-facing strings, so they should be translatable.
-
Lioncash authored
Calling tr() from a file-scope array isn't advisable, since it can be executed before the Qt libraries are even fully initialized, which can lead to crashes. Instead, the translatable strings should be annotated, and the tr() function should be called at the string's usage site.
-
Lioncash authored
This is actually a struct, not a class, which can lead to compilation warnings.
-
Rodolfo Bogado authored
-
David authored
* Fixed shader linking error due to TLDS coord should be coords * Fix remaining coords
-
bunnei authored
- This was incorrect, the game appears to handle this for us. - Fixes horizontal mode with Puyo Puyo Tetris and Super Mario Odyssey.
-
ReinUsesLisp authored
-
- Dec 22, 2018
-
-
Rodolfo Bogado authored
-
Rodolfo Bogado authored
-
Rodolfo Bogado authored
-
- Dec 21, 2018
-
-
Lioncash authored
Previously xyz was always being zero initialized due to its constructor, but w wasn't. Ensures that we always have a deterministic initial state.
-
bunnei authored
-
Lioncash authored
While we're at it, we can also toss out the leftover capability parsing from Citra.
-
Lioncash authored
-
Lioncash authored
This just specifies the handle table size. There's also a section of reserved bits that are checked against.
-
Lioncash authored
-
Lioncash authored
-
Lioncash authored
Similar to the service capability flags, however, we currently don't emulate the GIC, so this currently handles all interrupts as being valid for the time being.
-
Lioncash authored
-
Lioncash authored
Handles the priority mask and core mask flags to allow building up the masks to determine the usable thread priorities and cores for a kernel process instance.
-
Lioncash authored
We've had the old kernel capability parser from Citra, however, this is unused code and doesn't actually map to how the kernel on the Switch does it. This introduces the basic functional skeleton for parsing process capabilities.
-