summaryrefslogtreecommitdiff
path: root/src/core/hle (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ARM: Integrate SkyEye faster "dyncom" interpreter.Gravatar bunnei2014-10-251-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 ↵Gravatar Emmanuel Gil Peyrot2014-10-251-8/+7
| | | | handle instead
* Merge pull request #128 from purpasmart96/masterGravatar bunnei2014-10-071-1/+31
|\ | | | | APT:U Added a stub fuction for "GlanceParameter"
| * APT: Added a stub for the "GlanceParameter" function.Gravatar purpasmart962014-10-071-1/+31
| |
* | FileSys: split the constructor into an Open method, in order to notify the ↵Gravatar Emmanuel Gil Peyrot2014-10-061-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.Gravatar Emmanuel Gil Peyrot2014-10-061-0/+8
|/
* Added some more names to the function tableGravatar purpasmart962014-10-041-0/+2
| | | Added "SetApplicationCpuTimeLimit" and "GetApplicationCpuTimeLimit" to apt.cpp
* added "StoreDataCache" to the function tableGravatar purpasmart962014-09-301-0/+1
| | | seems simple enough
* Use the citra user path for the sdmc directoryGravatar archshift2014-09-211-2/+1
|
* Kernel: Implement the Close command for Archive, File and Directory.Gravatar Emmanuel Gil Peyrot2014-09-172-0/+43
|
* FS: Implement OpenArchive, OpenDirectory, OpenFile and OpenFileDirectly calls.Gravatar Emmanuel Gil Peyrot2014-09-171-20/+177
|
* Kernel: Add a Directory object and a getter for it from an Archive object.Gravatar Emmanuel Gil Peyrot2014-09-173-0/+91
|
* Kernel: Add a File object and a getter for it from an Archive object.Gravatar Emmanuel Gil Peyrot2014-09-172-0/+118
|
* Core: Get rid of unnecessary switch statement in KernelGravatar Lioncash2014-09-141-41/+2
|
* Added support for multiple input device types for KeyMap and connected Qt.Gravatar Kevin Hartman2014-09-122-113/+127
|
* Initial HID PAD work, with GLFW only.Gravatar Kevin Hartman2014-09-112-24/+197
|
* Created structure for PAD.Gravatar Kevin Hartman2014-09-112-0/+28
|
* Merge pull request #99 from archshift/ext-checkGravatar bunnei2014-09-111-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.cppGravatar archshift2014-09-081-1/+1
| |
* | core: Prune redundant includesGravatar archshift2014-09-0812-23/+0
|/
* core: Pass string by reference in FetchFromPortName and DeleteServiceGravatar Lioncash2014-09-062-4/+4
|
* Threading: Fix thread starting to execute first instruction correctly.Gravatar bunnei2014-08-281-0/+5
|
* srv::Initialize: Return "success" status code.Gravatar bunnei2014-08-281-0/+4
|
* Pica/citra-qt: Replace command list view and command list debugging code ↵Gravatar Tony Wasserka2014-08-251-5/+0
| | | | with something more sophisticated.
* GSP: Update framebuffer information when necessary.Gravatar Tony Wasserka2014-08-252-2/+41
|
* GSP: Implement SetBufferSwap.Gravatar Tony Wasserka2014-08-252-1/+47
|
* GSP: Add a helper function for convenience.Gravatar Tony Wasserka2014-08-251-17/+22
|
* Added FS functions to Archive and Archive_RomFSGravatar archshift2014-08-221-3/+31
|
* Core: Use std::array for managing kernel object spaceGravatar Lioncash2014-08-192-5/+5
| | | | These avoid relying on memset for clearing the arrays.
* Merge pull request #55 from lioncash/stringGravatar bunnei2014-08-1816-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 ↵Gravatar Lioncash2014-08-1716-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.Gravatar bunnei2014-08-182-19/+48
|/ | | | Changed HLE function return methods to be static inline functions.
* Core: Fix a formatting error in svc.cppGravatar Lioncash2014-08-171-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-improvementsGravatar bunnei2014-08-122-6/+45
|\ | | | | Hid minor improvements
| * HID: Added new function entries from 3dbrew to FunctionTable.Gravatar bunnei2014-08-121-0/+5
| | | | | | | | HID: Fix typo with DisableGyroscopeLow command.
| * HID: Implemented HID_User::GetIPCHandles service function.Gravatar bunnei2014-08-071-5/+39
| |
| * SVC: Fixed typo with MapMemoryBlock DEBUG_LOG call.Gravatar bunnei2014-08-071-1/+1
| |
* | Pica/GPU: Change hardware registers to use physical addresses rather than ↵Gravatar Tony Wasserka2014-08-121-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 ↵Gravatar Tony Wasserka2014-08-121-4/+13
| | | | | | | | transfers were triggered at all anymore.
* | Remove the fancy RegisterSet class introduced in 4c2bff61e.Gravatar Tony Wasserka2014-08-121-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.Gravatar bunnei2014-08-062-2/+10
|
* GSP: Cleaned up command buffer decoding.Gravatar bunnei2014-08-062-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.Gravatar bunnei2014-08-051-0/+3
|
* GSP: Removed dumb GX prefixes to functions/structs in GSP namespace.Gravatar bunnei2014-08-052-77/+78
| | | | - Various other cleanups.
* GSP: Removed unnecessary GX_FinishCommand function.Gravatar bunnei2014-08-051-13/+5
|
* GSP: Implements preliminary command synchronization via GPU interrupts.Gravatar bunnei2014-08-052-18/+109
| | | | Core: Added a comment to explain the logic for the RunLoop iterations.
* AddressArbiter: Removed unnecessary HLE::Reschedule.Gravatar bunnei2014-08-051-1/+0
|
* AddressArbiter: Fixed bug with break statements missing from case statements.Gravatar bunnei2014-08-051-0/+2
|
* SRV: Updated GetProcSemaphore to create an event instead of a mutex.Gravatar bunnei2014-08-051-8/+10
|
* SVC: Removed ArbitrateAddress log message that spams to much.Gravatar bunnei2014-08-051-2/+0
|