summaryrefslogtreecommitdiff
path: root/src/core/arm/interpreter (follow)
Commit message (Collapse)AuthorAgeFilesLines
* dyncom: Move arminit.cpp and armsupp.cpp into skyeye_commonGravatar Lioncash2015-07-252-765/+0
|
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-291-1/+1
|
* dyncom: Get rid of armemu.hGravatar Lioncash2015-05-231-1/+0
|
* Memmap: Re-organize memory function in two filesGravatar Yuri Kunde Schlesner2015-05-151-1/+0
| | | | | | | memory.cpp/h contains definitions related to acessing memory and configuring the address space mem_map.cpp/h contains higher-level definitions related to configuring the address space accoording to the kernel and allocating memory.
* dyncom: Removed irrelevant log.Gravatar bunnei2015-05-141-2/+0
|
* Clean-up includesGravatar Yuri Kunde Schlesner2015-05-061-0/+2
|
* Dyncom: Move cream cache to ARMul_State.Gravatar bunnei2015-05-011-2/+0
|
* dyncom: Remove more unused/unnecessary codeGravatar Lioncash2015-04-201-22/+0
| | | | Gets rid of a sizeable amount of stuff in armdefs.
* dyncom: Remove unused/unnecessary VFP cruftGravatar Lioncash2015-04-172-151/+8
|
* core: Migrate 3DS-specific CP15 register setting into InitGravatar Lioncash2015-04-061-8/+0
|
* Move CP15 enum definitions into their own enum.Gravatar Lioncash2015-04-062-144/+144
| | | | Also gets rid of preprocessor mumbo-jumbo
* dyncom: Properly return the value of the user RO thread registerGravatar Lioncash2015-04-062-4/+10
|
* dyncom: Set CP15 reset values on initializationGravatar Lioncash2015-04-061-0/+60
|
* dyncom: Move CP15 register writing into its own function.Gravatar Lioncash2015-04-021-0/+229
| | | | Also implements writing to the rest of the ARM11 MPCore CP15 register set.
* dyncom: Move CP15 register reading into its own function.Gravatar Lioncash2015-04-021-0/+196
| | | | Keeps everything contained. Added all supported readable registers in an ARM11 MPCore.
* dyncom: Migrate InAPrivilegedMode to armsuppGravatar Lioncash2015-03-261-0/+6
| | | | It's a generic helper function, so it should be here anyway.
* dyncom: Make Load/Store instructions support big endianGravatar Lioncash2015-03-171-0/+6
|
* arm: Remove unnecessary booleansGravatar Lioncash2015-02-251-4/+0
| | | | We don't care about any of these.
* arm: General cleanupGravatar Lioncash2015-02-132-4/+2
| | | | | | | - Remove several typedefs for ARMul_State. - Remove unused functions - Remove unused/unnecessary headers - Removed unused enums, etc.
* dyncom: Clean up the constructorGravatar Lioncash2015-02-121-4/+3
| | | | Some function calls aren't necessary and would be handled by regular initialization routines.
* arm: Remove ARMul_EmulateInitGravatar Lioncash2015-02-121-40/+0
| | | | This was only used for armemu, which has since been removed. Removed components related to this as well.
* arm: Remove ARM26 support.Gravatar Lioncash2015-02-111-25/+4
| | | | This will never be used. 32-bit is the norm.
* arm: Get rid of some magic constants. Specify proper ARM mode.Gravatar Lioncash2015-02-111-1/+1
| | | | Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE.
* arm: Remove TRUE/FALSE definesGravatar Lioncash2015-02-102-12/+9
| | | | | - Removed the Debug parameter from ARMul_State since it isn't used. - Changed ARMul_CoProInit to a void function. It always returned true.
* arm: Clean up ARMul_StateGravatar Lioncash2015-01-311-20/+9
| | | | Remove unnecessary/unused struct variables.
* arm: Adios armemuGravatar Lioncash2015-01-318-7751/+56
|
* arm: Throw out a lot of unnecessary codeGravatar Lioncash2015-01-303-1257/+36
|
* Cleanup: Logging in CoreGravatar Chin2015-01-191-51/+6
|
* dyncom: Add a helper function for addition with a carryGravatar Lioncash2015-01-121-0/+16
|
* Move ThreadContext to core/core.h and deal with the falloutGravatar Yuri Kunde Schlesner2015-01-092-4/+6
|
* dyncom: Implement QADD/QSUB/QDADD/QDSUBGravatar Lioncash2015-01-051-12/+8
|
* armemu: Fix missing Q flag check for SMLSD.Gravatar Lioncash2015-01-021-2/+6
|
* dyncom: Implement SMLAD/SMUAD/SMLSD/SMUSDGravatar Lioncash2015-01-022-5/+9
|
* Fix SADD8/SSUB8 in the armemuGravatar Lioncash2015-01-011-50/+28
|
* dyncom: Implement USAT/SSATGravatar bunnei2014-12-291-0/+35
|
* armemu: Implement QADD8/QSUB8Gravatar Lioncash2014-12-292-33/+95
|
* Merge pull request #355 from lioncash/simpGravatar bunnei2014-12-281-225/+142
|\ | | | | armemu: Simplify some instructions.
| * armemu: Simplify SSAT/SSAT16/SXTB/SXTABGravatar Lioncash2014-12-281-71/+48
| |
| * armemu: Simplify REV/REV16/SXTH/SXTAHGravatar Lioncash2014-12-281-38/+26
| |
| * armemu: Simplify USAT16/UXTB/UXTABGravatar Lioncash2014-12-281-65/+42
| |
| * armemu: Simplify REVSH/UXTH/UXTAHGravatar Lioncash2014-12-281-48/+23
| |
* | armemu: Fix PKHTB to do an arithmetic shift and correctly decode immediate ↵Gravatar bunnei2014-12-281-13/+5
| | | | | | | | field.
* | Merge pull request #354 from lioncash/usaduflowGravatar bunnei2014-12-282-4/+13
|\ \ | |/ |/| armemu: Fix underflows in USAD8/USADA8
| * armemu: Fix underflows in USAD8/USADA8Gravatar Lioncash2014-12-282-4/+13
| | | | | | | | Initially reported by xdec.
* | armemu: Implement UQADD8, UQADD16, UQSUB16, UQASX, and UQSAXGravatar Lioncash2014-12-272-19/+89
|/
* armemu: Implement UHADD8, UHADD16, UHSUB8, UHSUB16, UHASX, and UHSAXGravatar Lioncash2014-12-261-2/+73
|
* Merge pull request #339 from bunnei/fixup-gsp-synchGravatar bunnei2014-12-252-46/+11
|\ | | | | Fixup gsp synch
| * ARM: Add a mechanism for faking CPU time elapsed during HLE.Gravatar bunnei2014-12-252-46/+11
| | | | | | | | - Also a few cleanups.
* | Merge pull request #343 from lioncash/smmlaGravatar bunnei2014-12-251-2/+30
|\ \ | | | | | | armemu: Implement SMMUL, SMMLA, and SMMLS.
| * | armemu: Implement SMMUL, SMMLA, and SMMLS.Gravatar Lioncash2014-12-251-2/+30
| |/