summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #97 from archshift/cleanupGravatar bunnei2014-09-131-1/+1
|\ \ \ | |/ / |/| | Small, general code cleanup
| * | Dead code removal: video_core.cpp, load_symbol_map.cppGravatar archshift2014-09-071-1/+1
| | |
* | | 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-113-55/+56
|\ \ \ | | | | | | | | 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-083-56/+55
| | | |
| * | | loader.cpp: improved file extension checking, made Upper/LowerStr usefulGravatar archshift2014-09-081-6/+8
| | |/ | |/| | | | | | | Instead of forcibly taking the last 4 characters, it now finds the last extension separator (the period) and takes a substr of its location.
* / | core: Prune redundant includesGravatar archshift2014-09-0820-37/+0
|/ /
* | Merge pull request #95 from lioncash/disassemblerGravatar bunnei2014-09-083-189/+143
|\ \ | | | | | | core: Make the ARM disassembler use std::string internally
| * | core: Make the ARM disassembler use std::string internallyGravatar Lioncash2014-09-063-189/+143
| | |
* | | Merge pull request #87 from archshift/remove-cruftGravatar bunnei2014-09-071-1/+1
|\ \ \ | |_|/ |/| | Removed redundant headers for std implementations
| * | Removed common/std_xyz, instead using the std headerGravatar archshift2014-09-071-1/+1
| |/
* | Merge pull request #93 from lioncash/refGravatar bunnei2014-09-062-4/+4
|\ \ | | | | | | core: Pass string by reference in FetchFromPortName and DeleteService
| * | core: Pass string by reference in FetchFromPortName and DeleteServiceGravatar Lioncash2014-09-062-4/+4
| |/
* | ncch: Remove C-style struct typedefsGravatar Lioncash2014-09-061-4/+4
| | | | | | | | In C++ you can simply just declare it as is.
* | ncch: inline declare some variables in LZSS_DecompressGravatar Lioncash2014-09-061-7/+5
|/
* Removed common/atomic, instead using std::atomicGravatar archshift2014-09-021-4/+4
|
* Remove hand-crafted Visual Studio solution.Gravatar Yuri Kunde Schlesner2014-09-012-592/+0
|
* CMake cleanupGravatar Yuri Kunde Schlesner2014-09-011-47/+56
| | | | | | | | Several cleanups to the buildsystem: - Do better factoring of common libs between platforms. - Add support to building on Windows. - Remove Qt4 support. - Re-sort file lists and add missing headers.
* Merge pull request #84 from bunnei/fix-hw-synchronizationGravatar bunnei2014-08-313-33/+48
|\ | | | | Fix GPU/HW synchronization
| * GPU: Improve frame synchronization, increases compatibility with both ↵Gravatar bunnei2014-08-301-13/+31
| | | | | | | | homebrew and retail applications.
| * Core: Refactor core to use only one function for execution.Gravatar bunnei2014-08-302-20/+17
| | | | | | | | | | | | Core: Cleaned up comment to be more readable. Citra: Changed loop to be more readable.
| * Loader: Added support for loading raw BIN executables.Gravatar bunnei2014-08-302-0/+21
| | | | | | | | | | | | - Useful for debugging homebrew Qt: Updated GUI to support loading .bin files.
| * Threading: Fix thread starting to execute first instruction correctly.Gravatar bunnei2014-08-302-1/+6
| |
| * srv::Initialize: Return "success" status code.Gravatar bunnei2014-08-301-0/+4
| |
* | Merge pull request #82 from yuriks/addr-typesGravatar bunnei2014-08-302-31/+40
|\ \ | | | | | | Introduce VAddr and PAddr typedefs for ARM addresses.
| * | Introduce VAddr and PAddr typedefs for ARM addresses.Gravatar Yuri Kunde Schlesner2014-08-312-31/+40
| |/
* | Loader: Added support for loading raw BIN executables.Gravatar bunnei2014-08-282-0/+21
| | | | | | | | | | | | - Useful for debugging homebrew Qt: Updated GUI to support loading .bin files.
* | Threading: Fix thread starting to execute first instruction correctly.Gravatar bunnei2014-08-282-1/+6
| |
* | srv::Initialize: Return "success" status code.Gravatar bunnei2014-08-281-0/+4
|/
* VideoCore: Fixes rendering issues on Qt and corrects framebuffer output size.Gravatar bunnei2014-08-261-9/+8
|
* GPU: Fix a compiler warning about redundant semicolons.Gravatar Tony Wasserka2014-08-251-2/+2
|
* 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
|
* Merge pull request #68 from archshift/readfileGravatar bunnei2014-08-224-11/+88
|\ | | | | Added FS functions to Archive and Archive_RomFS
| * Added FS functions to Archive and Archive_RomFSGravatar archshift2014-08-224-11/+88
| |
* | ARM: Remove a forgotten const in vfp.Gravatar Emmanuel Gil Peyrot2014-08-202-2/+2
|/
* 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.
* Merge pull request #53 from lioncash/memmapGravatar bunnei2014-08-171-4/+8
|\ | | | | Core: Fix undefined behavior in mem_map_funcs' WriteBlock function
| * Core: Fix undefined behavior in mem_map_funcs' WriteBlock functionGravatar Lioncash2014-08-171-4/+8
| |
* | 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
| |