aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/arm/skyeye_common
Commit message (Collapse)AuthorAge
...
* | dyncom: Implement UQADD8, UQADD16, UQSUB8, UQSUB16, UQASX, and UQSAX.Gravatar Lioncash2014-12-27
| |
* | armemu: Implement UQADD8, UQADD16, UQSUB16, UQASX, and UQSAXGravatar Lioncash2014-12-27
|/
* armemu: Set the Q flag properly for SMLAD/SMUADGravatar Lioncash2014-12-23
|
* armemu: Fix construction of the CPSRGravatar Lioncash2014-12-22
|
* armemu: Fix FTOUI NaN sign.Gravatar Normmatt2014-12-16
|
* armemu: Fix FSUBS bug where NaN shouldn't be negatedGravatar Normmatt2014-12-16
|
* Merge pull request #276 from lioncash/decrappifyGravatar bunnei2014-12-14
|\ | | | | Clean up armdefs.h a little.
* | ARM: Pull some SkyEye fixes from 3dmoo.Gravatar bunnei2014-12-14
| |
| * Clean up armdefs.hGravatar Lioncash2014-12-14
|/
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* Remove unused includes to common/thread.hGravatar Emmanuel Gil Peyrot2014-11-25
|
* HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-24
| | | | | | | | | | | | | | | | | | | | | | | | | | 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 intsGravatar Yuri Kunde Schlesner2014-11-24
| | | | | This prevents them from interfering with other constants defined in different namespaces.
* Fix compilation errorsGravatar Sean Maas2014-11-02
|
* ARM: Merge latest VFP fixes from 3dmoo team.Gravatar bunnei2014-11-02
|
* Fix VFP compilation errors with gccGravatar Yuri Kunde Schlesner2014-10-30
|
* vfp_helper: Get rid of integer type redefinitionsGravatar Lioncash2014-10-26
|
* ARM: Removed unnecessary and unused SkyEye MMU code.Gravatar bunnei2014-10-25
| | | | Added license header back in. I originally removed this because I mostly rewrote the file, but meh
* ARM: Integrate SkyEye faster "dyncom" interpreter.Gravatar bunnei2014-10-25
| | | | | | | | | | Fixed typo (make protected member public) Added license header back in. I originally removed this because I mostly rewrote the file, but meh ARM: Fixed a type error in dyncom interpreter. ARM: Updated dyncom to use unique_ptr for internal ARM state.
* ARM: Reorganized file structure to move shared SkyEye code to a more common ↵Gravatar bunnei2014-10-25
area. Removed s_ prefix