summaryrefslogtreecommitdiffstats
path: root/src/core/arm/skyeye_common/armdefs.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* arm: Clean up ARMul_StateLioncash2015-02-011-110/+71
| | | | Remove unnecessary/unused struct variables.
* arm: Adios armemuLioncash2015-02-011-157/+4
|
* arm: Throw out a lot of unnecessary codeLioncash2015-01-301-206/+6
|
* armdefs: Move some defines over to enumsLioncash2015-01-301-131/+112
|
* dyncom: Add a helper function for addition with a carryLioncash2015-01-121-0/+1
|
* Merge pull request #417 from kevinhartman/exclusive-tag-fixbunnei2015-01-061-11/+11
|\ | | | | Added exclusive reservation granule from ARMv7 spec to dyncom...
| * Added exclusive reservation granule from ARMv7 spec to dyncom to protect LDR/STREX.Kevin Hartman2015-01-061-11/+11
| |
* | dyncom: Implement QADD/QSUB/QDADD/QDSUBLioncash2015-01-051-0/+5
|/
* dyncom: Implement SMLAD/SMUAD/SMLSD/SMUSDLioncash2015-01-031-0/+2
|
* dyncom: Implement USAT/SSATbunnei2014-12-301-0/+2
|
* armemu: Implement QADD8/QSUB8Lioncash2014-12-291-0/+5
|
* dyncom: Implement USAD8/USADA8Lioncash2014-12-281-0/+1
|
* dyncom: Implement UQADD8, UQADD16, UQSUB8, UQSUB16, UQASX, and UQSAX.Lioncash2014-12-271-0/+5
|
* armemu: Fix construction of the CPSRLioncash2014-12-231-1/+1
|
* Merge pull request #276 from lioncash/decrappifybunnei2014-12-151-306/+169
|\ | | | | Clean up armdefs.h a little.
| * Clean up armdefs.hLioncash2014-12-141-306/+169
| |
* | ARM: Pull some SkyEye fixes from 3dmoo.bunnei2014-12-151-0/+1
|/
* HLE: Revamp error handling throrough the HLE codeYuri Kunde Schlesner2014-11-241-16/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
* Change some SkyEye defines to const intsYuri Kunde Schlesner2014-11-241-16/+16
| | | | | This prevents them from interfering with other constants defined in different namespaces.
* ARM: Removed unnecessary and unused SkyEye MMU code.bunnei2014-10-251-1/+0
| | | | Added license header back in. I originally removed this because I mostly rewrote the file, but meh
* ARM: Reorganized file structure to move shared SkyEye code to a more common area.bunnei2014-10-251-0/+931
Removed s_ prefix