| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Core: Fix sorting in CMakeFiles.txt | 2015-05-08 | 1 | -21/+21 | ||
| | | ||||||
| * | Merge pull request #728 from lioncash/vars | 2015-05-07 | 1 | -19/+17 | ||
| |\ | | | | | dyncom: Remove an unnecessary variable in the interpreter | |||||
| | * | dyncom: Remove an unnecessary variable in the interpreter | 2015-05-07 | 1 | -19/+17 | ||
| | | | | | | | | | All this was doing was needlessly aliasing a variable. | |||||
| * | | Remove unnecessary dyncom header files | 2015-05-07 | 6 | -82/+2 | ||
| |/ | ||||||
| * | Common: Remove mem_arena.cpp/h | 2015-05-07 | 2 | -94/+31 | ||
| | | | | | | | It is superfluous for Citra. (It's only really necessary if you're doing JIT. We were using it but not taking any advantage from it.) This should make 32-bit builds work again. | |||||
| * | Fix printf format warning | 2015-05-07 | 1 | -1/+1 | ||
| | | ||||||
| * | Common: Remove common.h | 2015-05-07 | 57 | -29/+85 | ||
| | | ||||||
| * | Clean-up includes | 2015-05-06 | 7 | -9/+13 | ||
| | | ||||||
| * | FileSys: De-inline Path members | 2015-05-06 | 4 | -125/+139 | ||
| | | ||||||
| * | FileSys: Clean-up includes, de-inline destructors | 2015-05-06 | 7 | -20/+35 | ||
| | | ||||||
| * | Move typedefs from kernel.h to more appropriate places | 2015-05-06 | 2 | -10/+8 | ||
| | | ||||||
| * | HLE: Clean up SVC dispatch mechanism | 2015-05-06 | 5 | -79/+40 | ||
| | | ||||||
| * | Core: Remove some unused functions and types | 2015-05-04 | 2 | -32/+1 | ||
| | | ||||||
| * | CoreTiming: Initialize static variables at bootup. | 2015-05-01 | 1 | -0/+10 | ||
| | | ||||||
| * | HLE: Properly initialize and shutdown remaining modules. | 2015-05-01 | 5 | -3/+20 | ||
| | | ||||||
| * | Dyncom: Move cream cache to ARMul_State. | 2015-05-01 | 4 | -25/+18 | ||
| | | ||||||
| * | Kernel: Properly initialize and shutdown all modules. | 2015-05-01 | 4 | -9/+20 | ||
| | | ||||||
| * | HW: Properly initialize and shutdown all modules. | 2015-05-01 | 3 | -3/+8 | ||
| | | ||||||
| * | Services: Initialize all state variables at bootup. | 2015-05-01 | 8 | -22/+38 | ||
| | | ||||||
| * | Memory: Properly cleanup & shutdown. | 2015-05-01 | 3 | -38/+60 | ||
| | | ||||||
| * | ConfigMem: Remove duplicate retail bit | 2015-04-28 | 1 | -1/+0 | ||
| | | ||||||
| * | Merge pull request #692 from purpasmart96/log_improvements | 2015-04-28 | 4 | -22/+59 | ||
| |\ | | | | | Services/Loader: Use more sensible log formats for certain functions along with more info being logged. | |||||
| | * | Services/Loader: Use more sensible log formats for certain functions | 2015-04-27 | 4 | -22/+59 | ||
| | | | | | | | | | along with more info being logged. | |||||
| * | | ptm_sysm: Add static specifier to IsLegacyPowerOff | 2015-04-24 | 1 | -1/+1 | ||
| | | | ||||||
| * | | dyncom: Remove more unused/unnecessary code | 2015-04-20 | 5 | -95/+1 | ||
| | | | | | | | | | Gets rid of a sizeable amount of stuff in armdefs. | |||||
| * | | dyncom: Remove unused/unnecessary VFP cruft | 2015-04-17 | 7 | -823/+15 | ||
| | | | ||||||
| * | | Merge pull request #696 from yuriks/interface-deinline | 2015-04-14 | 3 | -50/+49 | ||
| |\ \ | | | | | | | De-inline functions from Interface, removing them from service.h | |||||
| | * | | De-inline functions from Interface, removing them from service.h | 2015-04-14 | 3 | -50/+49 | ||
| | | | | | | | | | | | | | This reduces the time for a full recompile from 65.43s to 59.53s (~9%) | |||||
| * | | | Core_ARM11: Replace debug prints with our own logging functions in vfpsingle. | 2015-04-14 | 2 | -39/+36 | ||
| | | | | ||||||
| * | | | Kernel: Use the correct format string for u64 hex. | 2015-04-14 | 1 | -1/+1 | ||
| | | | | ||||||
| * | | | Headers: Add some forgotten overrides, thanks clang! | 2015-04-14 | 2 | -2/+2 | ||
| |/ / | ||||||
| * | | SVC: Assert on unsupported CreateThread processor ID. | 2015-04-09 | 1 | -3/+9 | ||
| | | | ||||||
| * | | SVC: Update various SVCs to cause a reschedule. | 2015-04-09 | 2 | -6/+22 | ||
| | | | | | | | | | - CreateMutex/ReleaseMutex/ReleaseSemaphore/SetTimer/CancelTimer/ArbitrateAddress | |||||
| * | | Kernel: Implemented priority inheritance for mutexes. | 2015-04-09 | 3 | -4/+22 | ||
| | | | ||||||
| * | | Thread: Implement priority boost for starved threads. | 2015-04-09 | 4 | -28/+74 | ||
| | | | | | | | | | | | | | SVC: Return correct error code on invalid CreateThread processor ID. SVC: Assert when creating a thread with an invalid userland priority. | |||||
| * | | SVC: Reschedule on svcCreateThread. | 2015-04-09 | 1 | -0/+2 | ||
| | | | ||||||
| * | | APT: (Subv) Fix bug where start event was being incorrectly signaled. | 2015-04-09 | 1 | -6/+7 | ||
| | | | ||||||
| * | | Kernel: Fixed default thread priority. | 2015-04-09 | 2 | -5/+4 | ||
| | | | ||||||
| * | | Initialize base address to 0x0 | 2015-04-08 | 1 | -0/+1 | ||
| |/ | ||||||
| * | Merge pull request #689 from lioncash/format | 2015-04-08 | 1 | -1/+1 | ||
| |\ | | | | | gpu: Fix a missing format specifier | |||||
| | * | gpu: Fix a missing format specifier | 2015-04-07 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Merge pull request #688 from lioncash/unused | 2015-04-07 | 5 | -50/+30 | ||
| |\ \ | | | | | | | dyncom: Remove unnecessary enum and typedef | |||||
| | * | | dyncom: Remove unnecessary enum and typedef | 2015-04-07 | 5 | -50/+30 | ||
| | |/ | | | | | | | Also fixes descriptions in the process. | |||||
| * | | Merge pull request #676 from purpasmart96/ir_service_refc | 2015-04-07 | 11 | -59/+188 | ||
| |\ \ | |/ |/| | IR: Move The IR services to their own folder and implement "GetHandles" | |||||
| | * | IR: Move The IR services to their own folder and implement "GetHandles" | 2015-04-03 | 11 | -59/+188 | ||
| | | | ||||||
| * | | vfp: Make the FPSID values match the MPCore | 2015-04-06 | 1 | -7/+7 | ||
| | | | ||||||
| * | | vfp: Get rid of the VFP_OFFSET macro | 2015-04-06 | 5 | -64/+69 | ||
| | | | ||||||
| * | | Merge pull request #685 from lioncash/cpregs | 2015-04-06 | 9 | -134/+217 | ||
| |\ \ | | | | | | | dyncom: Set the MPCore CP15 register reset values on initialization. | |||||
| | * | | core: Migrate 3DS-specific CP15 register setting into Init | 2015-04-06 | 2 | -8/+5 | ||
| | | | | ||||||
| | * | | arm_interface: Support retrieval/storage to CP15 registers | 2015-04-06 | 3 | -0/+25 | ||
| | | | | ||||||