summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii/types/ver3_store_data.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-11-26service: nfc: Validate mii datagerman771-1/+1
2023-09-18service: mii: Complete structs and fix mistakesgerman771-39/+39
2023-09-12service: mii: Remove most magic valuesNarr the Reg1-109/+119
2023-09-11mii: service: Address reviewgerman771-20/+3
2023-09-11service: mii: Fix ver3 inconsistenciesgerman771-140/+160
2023-09-11service: mii: Move ver3 operationsgerman771-1/+223
2023-09-11service: mii: separate mii types into their own filegerman771-6/+2
2023-03-27x64: Add MicroSleepMorph1-0/+10
MicroSleep allows the processor to pause for a "short" amount of time (in the microsecond range). This is useful for spin-waiting that does not require nanosecond precision. This uses the new TPAUSE instruction introduced on Intel's newest processors as part of the waitpkg instructions. For CPUs that do not support waitpkg instructions, this is equivalent to yield(). Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com>