| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-06-29 | vfp: Change return type of VFPInit from unsigned int to void. | Lioncash | |
| 2015-06-29 | vfp: Handle accesses to FPINST/FPINST2 system registers | Lioncash | |
| Also has a side-benefit of correcting access to the FPEXC register. | |||
| 2015-06-28 | Core, VideoCore: Replace or fix exit() calls. | Emmanuel Gil Peyrot | |
| 2015-06-12 | vfp: Handle accesses to the VFP media feature registers | Lioncash | |
| These are able to be accessed in any privilege mode. | |||
| 2015-06-12 | vfp: Implement VMOVBCR/VMOVBRC | Lioncash | |
| 2015-05-29 | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | |
| 2015-05-23 | dyncom: Get rid of armemu.h | Lioncash | |
| 2015-05-22 | dyncom: remove load_r15 from arm_inst | Lioncash | |
| It's entirely unused. Also allows getting rid of more clunky macros. | |||
| 2015-05-22 | VFP: Log as trace to get rid of spamming. | bunnei | |
| 2015-05-21 | dyncom: Eliminate clang warnings | Lioncash | |
| Gets rid of a whole load of missing brace initialization warnings. | |||
| 2015-05-18 | Merge pull request #772 from lioncash/warn | bunnei | |
| core/video_core: Fix a few warnings when compiling on MSVC. | |||
| 2015-05-15 | Merge pull request #770 from lioncash/dyncom_clean | bunnei | |
| dyncom: Minor cleanup. | |||
| 2015-05-15 | Memmap: Re-organize memory function in two files | Yuri Kunde Schlesner | |
| 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. | |||
| 2015-05-14 | vfp: Get rid of warnings | Lioncash | |
| - Unary minus operator applied to unsigned type. - Unsafe use of bool. | |||
| 2015-05-14 | dyncom: Remove unnecessary typedefs | Lioncash | |
| 2015-05-11 | vfp: Handle flush-to-zero mode. | Lioncash | |
| 2015-05-07 | Remove unnecessary dyncom header files | Lioncash | |
| 2015-05-07 | Common: Remove common.h | Yuri Kunde Schlesner | |
| 2015-05-06 | Clean-up includes | Yuri Kunde Schlesner | |
| 2015-05-01 | Dyncom: Move cream cache to ARMul_State. | bunnei | |
| 2015-04-20 | dyncom: Remove more unused/unnecessary code | Lioncash | |
| Gets rid of a sizeable amount of stuff in armdefs. | |||
| 2015-04-17 | dyncom: Remove unused/unnecessary VFP cruft | Lioncash | |
| 2015-04-14 | Core_ARM11: Replace debug prints with our own logging functions in vfpsingle. | Emmanuel Gil Peyrot | |
| 2015-04-07 | dyncom: Remove unnecessary enum and typedef | Lioncash | |
| Also fixes descriptions in the process. | |||
| 2015-04-06 | vfp: Make the FPSID values match the MPCore | Lioncash | |
| 2015-04-06 | vfp: Get rid of the VFP_OFFSET macro | Lioncash | |
| 2015-04-06 | Move CP15 enum definitions into their own enum. | Lioncash | |
| Also gets rid of preprocessor mumbo-jumbo | |||
| 2015-04-02 | dyncom: Move CP15 register writing into its own function. | Lioncash | |
| Also implements writing to the rest of the ARM11 MPCore CP15 register set. | |||
| 2015-04-02 | dyncom: Move CP15 register reading into its own function. | Lioncash | |
| Keeps everything contained. Added all supported readable registers in an ARM11 MPCore. | |||
| 2015-03-26 | dyncom: Migrate InAPrivilegedMode to armsupp | Lioncash | |
| It's a generic helper function, so it should be here anyway. | |||
| 2015-03-20 | armmmu: Remove unnecessary enum values | Lioncash | |
| We don't need to care about XScale or Intel specific ARM stuff. | |||
| 2015-03-17 | dyncom: Make Load/Store instructions support big endian | Lioncash | |
| 2015-03-03 | vfp: Get rid of warnings | Lioncash | |
| 2015-02-25 | arm: Remove unnecessary booleans | Lioncash | |
| We don't care about any of these. | |||
| 2015-02-17 | vfpinstr: Fix trivial signed/unsigned mismatch warnings | Lioncash | |
| 2015-02-15 | vfpdouble: Use %p for printing pointer addresses. | Lioncash | |
| 2015-02-15 | arm: Set the A bit on reset. | Lioncash | |
| This enum value is ORed against in ARMul_Reset (and used to refer to all interrupt bits in the CPSR). So simply updating this is enough. | |||
| 2015-02-13 | core: Apply static to local functions | Lioncash | |
| 2015-02-13 | arm: General cleanup | Lioncash | |
| - Remove several typedefs for ARMul_State. - Remove unused functions - Remove unused/unnecessary headers - Removed unused enums, etc. | |||
| 2015-02-12 | dyncom: Switch the app and system cores into the correct mode at initialization | Lioncash | |
| 2015-02-12 | dyncom: Clean up the constructor | Lioncash | |
| Some function calls aren't necessary and would be handled by regular initialization routines. | |||
| 2015-02-12 | arm: Remove ARMul_EmulateInit | Lioncash | |
| This was only used for armemu, which has since been removed. Removed components related to this as well. | |||
| 2015-02-12 | armdefs: Remove unnecessary extern C | Lioncash | |
| 2015-02-11 | arm: Remove ARM26 support. | Lioncash | |
| This will never be used. 32-bit is the norm. | |||
| 2015-02-11 | arm: Get rid of some magic constants. Specify proper ARM mode. | Lioncash | |
| Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE. | |||
| 2015-02-11 | arm: Change some more constants into enums | Lioncash | |
| 2015-02-10 | arm: Remove TRUE/FALSE defines | Lioncash | |
| - 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-10 | Merge pull request #553 from lioncash/denorm | bunnei | |
| vfp: Normalize accumulator for multiply accumulate instructions | |||
| 2015-02-10 | dyncom: Add more regs to MCR/MRC | Lioncash | |
| Adds the registers that were left out of some coprocessor ranges. | |||
| 2015-02-10 | vfp: Normalize accumulator for multiply accumulate instructions | Lioncash | |
