| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-01-08 | kernel: Rename Semaphore to ConditionVariable. | bunnei | |
| 2018-01-04 | cmake: Don't compile Dynarmic as it's unused. | bunnei | |
| 2018-01-04 | unicorn: Use for arm interface on Windows. | bunnei | |
| 2018-01-03 | core: Remove unicorn_dynload. | bunnei | |
| 2018-01-02 | arm: Remove SkyEye/Dyncom code that is ARMv6-only. | bunnei | |
| 2018-01-02 | hle: Move SVC code to kernel namespace. | bunnei | |
| 2018-01-01 | cmake: Add missing object_address_table. | bunnei | |
| 2017-12-28 | service: Add empty interface for pctl:a. | bunnei | |
| 2017-12-28 | kernel: Add basic support for Domain object. | bunnei | |
| 2017-12-28 | kernel: Add SyncObject primitive, use it for ClientSession. | bunnei | |
| 2017-12-28 | service: Add empty interface for aoc:u. | bunnei | |
| 2017-10-15 | core: Refactor MakeMagic usage and remove dead code. | bunnei | |
| 2017-10-14 | hle: Add service stubs for apm and appletOE. | bunnei | |
| 2017-10-14 | hle: Initial implementation of NX service framework and IPC. | bunnei | |
| 2017-10-12 | Remove more 3DS-specific code. | bunnei | |
| 2017-10-12 | Remove more 3DS-specific code. | bunnei | |
| 2017-10-10 | hle: Remove a large amount of 3ds-specific service code. | bunnei | |
| 2017-10-09 | Merge remote-tracking branch 'upstream/master' into nx | bunnei | |
| # Conflicts: # src/core/CMakeLists.txt # src/core/arm/dynarmic/arm_dynarmic.cpp # src/core/arm/dyncom/arm_dyncom.cpp # src/core/hle/kernel/process.cpp # src/core/hle/kernel/thread.cpp # src/core/hle/kernel/thread.h # src/core/hle/kernel/vm_manager.cpp # src/core/loader/3dsx.cpp # src/core/loader/elf.cpp # src/core/loader/ncch.cpp # src/core/memory.cpp # src/core/memory.h # src/core/memory_setup.h | |||
| 2017-10-05 | loader: Add support for NRO, as well as various fixes and shared linker. | bunnei | |
| 2017-10-01 | file_sys: add class for Title Metadata (TMD) | shinyquagsire23 | |
| 2017-09-30 | loader: Add support for loading an NSO. | bunnei | |
| 2017-09-30 | externals: Add lz4. | bunnei | |
| 2017-09-25 | Loader/NCCH: Add support for loading application updates (#2927) | Max Thomas | |
| * loader/ncch: split NCCH parsing into its own file * loader/ncch: add support for loading update NCCHs from the SD card * loader/ncch: fix formatting * file_sys/ncch_container: Return a value for OpenFile * loader/ncch: cleanup, always instantiate overlay_ncch to base_ncch * file_sys/ncch_container: better encryption checks, allow non-app NCCHs to load properly and for the existence of NCCH structures to be checked * file_sys/ncch_container: pass filepath as a const reference | |||
| 2017-09-16 | Merge pull request #2906 from Subv/ns_new_framework | Yuri Kunde Schlesner | |
| Services/NS: Port ns:s to the new service framework. | |||
| 2017-09-16 | Services/NS: Port ns:s to the new service framework. | Subv | |
| 2017-09-05 | Merge pull request #2831 from Subv/uds_auth | Weiyi Wang | |
| Services/UDS: Handle beacon frames and the basic AP connection sequence frames. | |||
| 2017-08-27 | Services/UDS: Add functions to generate 802.11 auth and assoc response frames. | Subv | |
| 2017-08-23 | Merge pull request #2839 from Subv/global_kernel_lock | James Rowe | |
| Kernel/HLE: Use a mutex to synchronize access to the HLE kernel state between the cpu thread and any other possible threads that might touch the kernel (network thread, etc). | |||
| 2017-08-22 | Kernel/HLE: Use a mutex to synchronize access to the HLE kernel state ↵ | Subv | |
| between the cpu thread and any other possible threads that might touch the kernel (network thread, etc). This mutex is acquired in SVC::CallSVC, ie, as soon as the guest application enters the HLE kernel, and should be acquired by the aforementioned threads before modifying kernel structures. | |||
| 2017-08-19 | Merge pull request #2861 from wwylele/motion-refactor | James Rowe | |
| Refactor MotionEmu into a InputDevice | |||
| 2017-08-19 | Added missing parts in libnetwork (#2838) | B3n30 | |
| * Network: Set and send the game information over enet Added Callbacks for RoomMember and GetMemberList to Room in preparation for web_services. | |||
| 2017-08-11 | move MotionEmu from core/frontend to input_common as a InputDevice | wwylele | |
| 2017-07-16 | Merge pull request #2784 from wwylele/font-archive | Weiyi Wang | |
| load shared font from system archive | |||
| 2017-07-11 | web_service: Add CMake flag to enable. | bunnei | |
| 2017-07-10 | web_service: Add skeleton project. | bunnei | |
| 2017-06-26 | apt: load shared font from system archive | wwylele | |
| 2017-06-15 | UDS: Stub SendTo to generate the unencrypted data frame with the right headers. | Subv | |
| 2017-06-08 | Service: Add new ServiceFramework framework for writing HLE services | Yuri Kunde Schlesner | |
| The old "Interface" class had a few problems such as using free functions (Which didn't allow you to write the service handler as if it were a regular class.) which weren't very extensible. (Only received one parameter with a pointer to the Interface object.) The new ServiceFramework aims to solve these problems by working with member functions and passing a generic context struct as parameter. This struct can be extended in the future without having to update all existing service implementations. | |||
| 2017-06-06 | Service: Make service registration part of the sm implementation | Yuri Kunde Schlesner | |
| Also enhances the GetServiceHandle implementation to be more accurate. | |||
| 2017-06-06 | Service: Move SRV interface to a new sm/ subdirectory | Yuri Kunde Schlesner | |
| This will contain the implementation of the sm (Service Manager) system module. | |||
| 2017-06-05 | HLE: Move SessionRequestHandler from Service:: to Kernel:: | Yuri Kunde Schlesner | |
| Most of the code that works with this is or will be in the kernel, so it's a more appropriate place for it to be. | |||
| 2017-05-31 | Merge pull request #2739 from yuriks/kernel-reorg | bunnei | |
| Split-up kernel.h | |||
| 2017-05-29 | Kernel: Move HandleTable to a separate file | Yuri Kunde Schlesner | |
| 2017-05-29 | Kernel: Move WaitObject to a separate file | Yuri Kunde Schlesner | |
| Now that HandleTable doesn't directly depend on WaitObject anymore, this can be separated from the main kernel.h header. | |||
| 2017-05-27 | CMake: Remove unnecessary include_directories for dynarmic | Yuri Kunde Schlesner | |
| Dynarmic already adds the correct include paths to the library target. | |||
| 2017-05-27 | CMake: Add cryptopp include path to target property | Yuri Kunde Schlesner | |
| 2017-05-27 | CMake: Use IMPORTED target for Boost | Yuri Kunde Schlesner | |
| 2017-05-27 | CMake: Correct inter-module dependencies and library visibility | Yuri Kunde Schlesner | |
| Modules didn't correctly define their dependencies before, which relied on the frontends implicitly including every module for linking to succeed. Also changed every target_link_libraries call to specify visibility of dependencies to avoid leaking definitions to dependents when not necessary. | |||
| 2017-05-27 | Move screen size constants from video_core to core | Yuri Kunde Schlesner | |
| video_core didn't even properly use them, and they were the source of many otherwise-unnecessary dependencies from core to video_core. | |||
| 2017-05-27 | Move framebuffer_layout from Common to Core | Yuri Kunde Schlesner | |
| This removes a dependency inversion between core and common. It's also the proper place for the file since it makes screen layout decisions specific to the 3DS. | |||
