summaryrefslogtreecommitdiffstats
path: root/src/core/arm/skyeye_common/armdefs.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-07-26dyncom: Rename armdefs.h to armstate.hLioncash1-279/+0
2015-07-26dyncom: Get rid of skyeye typedefsLioncash1-28/+23
2015-07-26dyncom: Move helper functions to their own headerLioncash1-34/+0
2015-07-26armdefs: Remove unnecessary extern keywordsLioncash1-25/+25
2015-05-29Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot1-3/+3
2015-05-24dyncom: Get rid of armemu.hLioncash1-0/+28
2015-05-08Remove unnecessary dyncom header filesLioncash1-4/+0
2015-05-02Dyncom: Move cream cache to ARMul_State.bunnei1-0/+6
2015-04-20dyncom: Remove more unused/unnecessary codeLioncash1-52/+1
Gets rid of a sizeable amount of stuff in armdefs.
2015-04-18dyncom: Remove unused/unnecessary VFP cruftLioncash1-26/+0
2015-04-06vfp: Get rid of the VFP_OFFSET macroLioncash1-2/+4
2015-04-06Move CP15 enum definitions into their own enum.Lioncash1-1/+1
Also gets rid of preprocessor mumbo-jumbo
2015-04-02dyncom: Move CP15 register writing into its own function.Lioncash1-0/+1
Also implements writing to the rest of the ARM11 MPCore CP15 register set.
2015-04-02dyncom: Move CP15 register reading into its own function.Lioncash1-0/+2
Keeps everything contained. Added all supported readable registers in an ARM11 MPCore.
2015-03-26dyncom: Migrate InAPrivilegedMode to armsuppLioncash1-0/+1
It's a generic helper function, so it should be here anyway.
2015-03-17dyncom: Make Load/Store instructions support big endianLioncash1-1/+2
2015-02-25arm: Remove unnecessary booleansLioncash1-18/+5
We don't care about any of these.
2015-02-13arm: General cleanupLioncash1-15/+1
- Remove several typedefs for ARMul_State. - Remove unused functions - Remove unused/unnecessary headers - Removed unused enums, etc.
2015-02-13dyncom: Switch the app and system cores into the correct mode at initializationLioncash1-2/+2
2015-02-12arm: Remove ARMul_EmulateInitLioncash1-1/+0
This was only used for armemu, which has since been removed. Removed components related to this as well.
2015-02-12armdefs: Remove unnecessary extern CLioncash1-6/+0
2015-02-11arm: Remove ARM26 support.Lioncash1-20/+0
This will never be used. 32-bit is the norm.
2015-02-11arm: Get rid of some magic constants. Specify proper ARM mode.Lioncash1-0/+7
Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE.
2015-02-11arm: Change some more constants into enumsLioncash1-9/+14
2015-02-10arm: Remove TRUE/FALSE definesLioncash1-9/+3
- Removed the Debug parameter from ARMul_State since it isn't used. - Changed ARMul_CoProInit to a void function. It always returned true.
2015-02-01arm: Clean up ARMul_StateLioncash1-110/+71
Remove unnecessary/unused struct variables.
2015-02-01arm: Adios armemuLioncash1-157/+4
2015-01-30arm: Throw out a lot of unnecessary codeLioncash1-206/+6
2015-01-30armdefs: Move some defines over to enumsLioncash1-131/+112
2015-01-12dyncom: Add a helper function for addition with a carryLioncash1-0/+1
2015-01-06Added exclusive reservation granule from ARMv7 spec to dyncom to protect LDR/STREX.Kevin Hartman1-11/+11
2015-01-05dyncom: Implement QADD/QSUB/QDADD/QDSUBLioncash1-0/+5
2015-01-03dyncom: Implement SMLAD/SMUAD/SMLSD/SMUSDLioncash1-0/+2
2014-12-30dyncom: Implement USAT/SSATbunnei1-0/+2
2014-12-29armemu: Implement QADD8/QSUB8Lioncash1-0/+5
2014-12-28dyncom: Implement USAD8/USADA8Lioncash1-0/+1
2014-12-27dyncom: Implement UQADD8, UQADD16, UQSUB8, UQSUB16, UQASX, and UQSAX.Lioncash1-0/+5
2014-12-23armemu: Fix construction of the CPSRLioncash1-1/+1
2014-12-15ARM: Pull some SkyEye fixes from 3dmoo.bunnei1-0/+1
2014-12-14Clean up armdefs.hLioncash1-306/+169
2014-11-24HLE: Revamp error handling throrough the HLE codeYuri Kunde Schlesner1-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.
2014-11-24Change some SkyEye defines to const intsYuri Kunde Schlesner1-16/+16
This prevents them from interfering with other constants defined in different namespaces.
2014-10-25ARM: Removed unnecessary and unused SkyEye MMU code.bunnei1-1/+0
Added license header back in. I originally removed this because I mostly rewrote the file, but meh
2014-10-25ARM: Reorganized file structure to move shared SkyEye code to a more common area.bunnei1-2/+2
Removed s_ prefix
2014-07-24ARM: Synchronize Citra's SkyEye core with 3dmoo's.bunnei1-0/+5
2014-07-20core: Kill off type redefenitions in armdefs.hLioncash1-7/+0
2014-05-21arm: removed include of windows.h from armdefs.h to arminit.c (only module that uses it)bunnei1-4/+0
2014-05-17updated how we call ARM core to make things much fasterbunnei1-0/+1
2014-04-23fixes to build on linuxbunnei1-0/+2
2014-04-09fixed project includes to use new directory structurebunnei1-2/+2
2014-04-09got rid of 'src' folders in each sub-projectbunnei1-0/+0
2014-04-05moved arm core to interpreter directorybunnei1-0/+0
2014-04-02convert tabs to spacesbunnei1-275/+275
2013-09-24removed <windows.h> include from common.h and added it only where neededShizZy1-0/+4
2013-09-18added ARMulator/skyeye ARM11 core to the projectShizZy1-0/+930