summaryrefslogtreecommitdiffstats
path: root/src/video_core/macro/macro.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-04-15common: Move settings to common from core.bunnei1-1/+1
- Removes a dependency on core and input_common from common.
2020-09-22General: Make use of std::nullopt where applicableLioncash1-1/+1
Allows some implementations to avoid completely zeroing out the internal buffer of the optional, and instead only set the validity byte within the structure. This also makes it consistent how we return empty optionals.
2020-06-30macro: Add support for "middle methods" on the code cache (#4112)David1-8/+27
Macro code is just uploaded sequentially from a starting address, however that does not mean the entry point for the macro is at that address. This PR adds preliminary support for executing macros in the middle of our cached code.
2020-06-24Addressed issuesDavid Marcec1-1/+1
2020-06-24Macro HLE supportDavid Marcec1-4/+31
2020-06-03Mark parameters as constDavid Marcec1-1/+1
2020-06-02Pass by reference instead of copying parametersDavid Marcec1-1/+1
2020-05-30Implement macro JITDavid Marcec1-0/+45