| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | ARM: Integrate SkyEye faster "dyncom" interpreter. | 2014-10-25 | 1 | -20/+0 | |
| | | | | | | | | | | | 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. | ||||
| * | Don’t fail on empty filename in OpenFileDirectly, return the archive ↵ | 2014-10-25 | 1 | -8/+7 | |
| | | | | | handle instead | ||||
| * | Merge pull request #128 from purpasmart96/master | 2014-10-07 | 1 | -1/+31 | |
| |\ | | | | | APT:U Added a stub fuction for "GlanceParameter" | ||||
| | * | APT: Added a stub for the "GlanceParameter" function. | 2014-10-07 | 1 | -1/+31 | |
| | | | |||||
| * | | FileSys: split the constructor into an Open method, in order to notify the ↵ | 2014-10-06 | 1 | -0/+3 | |
| | | | | | | | | | | | | | opener something went wrong. Kernel: Return an invalid handle to OpenFile when it failed to open. | ||||
| * | | FileSys/Kernel: Implement SetSize service call for File objects. | 2014-10-06 | 1 | -0/+8 | |
| |/ | |||||
| * | Added some more names to the function table | 2014-10-04 | 1 | -0/+2 | |
| | | | | Added "SetApplicationCpuTimeLimit" and "GetApplicationCpuTimeLimit" to apt.cpp | ||||
| * | added "StoreDataCache" to the function table | 2014-09-30 | 1 | -0/+1 | |
| | | | | seems simple enough | ||||
| * | Use the citra user path for the sdmc directory | 2014-09-21 | 1 | -2/+1 | |
| | | |||||
| * | Kernel: Implement the Close command for Archive, File and Directory. | 2014-09-17 | 2 | -0/+43 | |
| | | |||||
| * | FS: Implement OpenArchive, OpenDirectory, OpenFile and OpenFileDirectly calls. | 2014-09-17 | 1 | -20/+177 | |
| | | |||||
| * | Kernel: Add a Directory object and a getter for it from an Archive object. | 2014-09-17 | 3 | -0/+91 | |
| | | |||||
| * | Kernel: Add a File object and a getter for it from an Archive object. | 2014-09-17 | 2 | -0/+118 | |
| | | |||||
| * | Core: Get rid of unnecessary switch statement in Kernel | 2014-09-14 | 1 | -41/+2 | |
| | | |||||
| * | Added support for multiple input device types for KeyMap and connected Qt. | 2014-09-12 | 2 | -113/+127 | |
| | | |||||
| * | Initial HID PAD work, with GLFW only. | 2014-09-11 | 2 | -24/+197 | |
| | | |||||
| * | Created structure for PAD. | 2014-09-11 | 2 | -0/+28 | |
| | | |||||
| * | Merge pull request #99 from archshift/ext-check | 2014-09-11 | 1 | -1/+1 | |
| |\ | | | | | loader.cpp: improved file extension checking, made Upper/LowerStr useful, moved string_util into Common namespace | ||||
| | * | Added string_util to common, small changes in loader.cpp | 2014-09-08 | 1 | -1/+1 | |
| | | | |||||
| * | | core: Prune redundant includes | 2014-09-08 | 12 | -23/+0 | |
| |/ | |||||
| * | core: Pass string by reference in FetchFromPortName and DeleteService | 2014-09-06 | 2 | -4/+4 | |
| | | |||||
| * | Threading: Fix thread starting to execute first instruction correctly. | 2014-08-28 | 1 | -0/+5 | |
| | | |||||
| * | srv::Initialize: Return "success" status code. | 2014-08-28 | 1 | -0/+4 | |
| | | |||||
| * | Pica/citra-qt: Replace command list view and command list debugging code ↵ | 2014-08-25 | 1 | -5/+0 | |
| | | | | | with something more sophisticated. | ||||
| * | GSP: Update framebuffer information when necessary. | 2014-08-25 | 2 | -2/+41 | |
| | | |||||
| * | GSP: Implement SetBufferSwap. | 2014-08-25 | 2 | -1/+47 | |
| | | |||||
| * | GSP: Add a helper function for convenience. | 2014-08-25 | 1 | -17/+22 | |
| | | |||||
| * | Added FS functions to Archive and Archive_RomFS | 2014-08-22 | 1 | -3/+31 | |
| | | |||||
| * | Core: Use std::array for managing kernel object space | 2014-08-19 | 2 | -5/+5 | |
| | | | | | These avoid relying on memset for clearing the arrays. | ||||
| * | Merge pull request #55 from lioncash/string | 2014-08-18 | 16 | -41/+38 | |
| |\ | | | | | Core: Alter the kernel string functions to use std::string instead of const char*. | ||||
| | * | Core: Alter the kernel string functions to use std::string instead of const ↵ | 2014-08-17 | 16 | -41/+38 | |
| | | | | | | | | | | | | | char*. Most functions already operate on std::strings. This also removes the need to manually null terminate thread names. | ||||
| * | | SVC: Added support for svc_GetSystemTick. | 2014-08-18 | 2 | -19/+48 | |
| |/ | | | | Changed HLE function return methods to be static inline functions. | ||||
| * | Core: Fix a formatting error in svc.cpp | 2014-08-17 | 1 | -3/+2 | |
| | | | | | | entry_point would not be added to the string. Also used StringFromFormat so that the buffer is unnecessary. | ||||
| * | Merge pull request #39 from bunnei/hid-minor-improvements | 2014-08-12 | 2 | -6/+45 | |
| |\ | | | | | Hid minor improvements | ||||
| | * | HID: Added new function entries from 3dbrew to FunctionTable. | 2014-08-12 | 1 | -0/+5 | |
| | | | | | | | | | HID: Fix typo with DisableGyroscopeLow command. | ||||
| | * | HID: Implemented HID_User::GetIPCHandles service function. | 2014-08-07 | 1 | -5/+39 | |
| | | | |||||
| | * | SVC: Fixed typo with MapMemoryBlock DEBUG_LOG call. | 2014-08-07 | 1 | -1/+1 | |
| | | | |||||
| * | | Pica/GPU: Change hardware registers to use physical addresses rather than ↵ | 2014-08-12 | 1 | -9/+9 | |
| | | | | | | | | | | | | | | | virtual ones. This cleans up the mess that address reading/writing had become and makes the code a *lot* more sensible. This adds a physical<->virtual address converter to mem_map.h. For further accuracy, we will want to properly extend this to support a wider range of address regions. For now, this makes simply homebrew applications work in a good manner though. | ||||
| * | | GSP: Fix a major regression introduced in ffda035c, due to which no display ↵ | 2014-08-12 | 1 | -4/+13 | |
| | | | | | | | | | transfers were triggered at all anymore. | ||||
| * | | Remove the fancy RegisterSet class introduced in 4c2bff61e. | 2014-08-12 | 1 | -18/+18 | |
| |/ | | | | | While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures. Instead, we now use a more conventional approach which is a lot more clean to use. | ||||
| * | Thread: Added more descriptive comment to WaitCurrentThread. | 2014-08-06 | 2 | -2/+10 | |
| | | |||||
| * | GSP: Cleaned up command buffer decoding. | 2014-08-06 | 2 | -61/+69 | |
| | | | | | | | | | GSP: Cleaned up code and added additional comments. GSP: Removed unnecessary TODO comment. GSP: Changed u32 iterators in TriggerCmdReqQueue to unsigned. | ||||
| * | GSP: Added reinitialization of other state objects. | 2014-08-05 | 1 | -0/+3 | |
| | | |||||
| * | GSP: Removed dumb GX prefixes to functions/structs in GSP namespace. | 2014-08-05 | 2 | -77/+78 | |
| | | | | | - Various other cleanups. | ||||
| * | GSP: Removed unnecessary GX_FinishCommand function. | 2014-08-05 | 1 | -13/+5 | |
| | | |||||
| * | GSP: Implements preliminary command synchronization via GPU interrupts. | 2014-08-05 | 2 | -18/+109 | |
| | | | | | Core: Added a comment to explain the logic for the RunLoop iterations. | ||||
| * | AddressArbiter: Removed unnecessary HLE::Reschedule. | 2014-08-05 | 1 | -1/+0 | |
| | | |||||
| * | AddressArbiter: Fixed bug with break statements missing from case statements. | 2014-08-05 | 1 | -0/+2 | |
| | | |||||
| * | SRV: Updated GetProcSemaphore to create an event instead of a mutex. | 2014-08-05 | 1 | -8/+10 | |
| | | |||||
| * | SVC: Removed ArbitrateAddress log message that spams to much. | 2014-08-05 | 1 | -2/+0 | |
| | | |||||