Age | Commit message (Collapse) | Author |
|
|
|
|
|
hidden
This allows the implementation of these types to change without
requiring a rebuild of everything that includes the macro interpreter
header.
|
|
|
|
Revert "Revert #2466" and stub FirmwareCall 4
|
|
|
|
|
|
|
|
This reverts a tested behavior on delay slots not exiting if the exit
flag is set. Currently new tests are required in order to ensure this
behavior.
|
|
slot.
It seems instructions marked with the 'exit' flag will not cause an exit when executed within a delay slot.
This was hwtested by fincs.
|
|
We can just use .at(), which essentially does the same thing, but with
less code.
|
|
Given we already ensure nothing can set the zeroth register in
SetRegister(), we don't need to check if the index is zero and special
case it. We can just access the register normally, since it's already
going to be zero.
We can also replace the assertion with .at() to perform the equivalent
behavior inline as part of the API.
|
|
Functions which are suppose to crash on non canary builds usually don't return anything which lead to uninitialized memory being used.
|
|
- More accurate impl., fixes Undertale (among other games).
|
|
- Used by Undertale.
|
|
- Fixes an issue where macros could be skipped.
- Fixes rendering of distant objects in Super Mario Odyssey.
|
|
* get rid of boost::optional
* Remove optional references
* Use std::reference_wrapper for optional references
* Fix clang format
* Fix clang format part 2
* Adressed feedback
* Fix clang format and MacOS build
|
|
The branch target is signed, so multiply by 4 instead of left shifting by 2
|
|
|
|
The Ryujinx macro interpreter and envydis were used as reference.
Macros are programs that are uploaded by the games during boot and can later be called by writing to their method id in a GPU command buffer.
|