| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | hle: Remove a large amount of 3ds-specific service code. | 2017-10-10 | 10 | -2266/+0 | |
| | | |||||
| * | Merge remote-tracking branch 'upstream/master' into nx | 2017-10-09 | 3 | -217/+540 | |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # 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 | ||||
| | * | Merge pull request #2953 from Subv/applet_launch | 2017-10-04 | 2 | -30/+47 | |
| | |\ | | | | | | | HLE/APT: Always set up the APT parameter when starting a library applet. | ||||
| | | * | HLE/APT: Always set up the APT parameter when starting a library applet. | 2017-09-25 | 2 | -30/+47 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | Only use the HLE interface if an HLE applet with the desired id was started. This commit reorganizes the APT code surrounding parameter creation and delivery to make it easier to support LLE applets in the future. As future work, the HLE applet interface can be reworked to utilize the same facilities as the LLE interface. | ||||
| | * | | Merge pull request #2946 from Subv/home_menu_apt | 2017-09-30 | 3 | -8/+45 | |
| | |\ \ | | | | | | | | | Implement PrepareToStartNewestHomeMenu and fixed an APT regression. | ||||
| | | * | | HLE/APT: Always return an error from PrepareToStartNewestHomeMenu so that ↵ | 2017-09-24 | 3 | -2/+26 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the Home Menu doesn't try to reboot the system. As per 3dbrew: "During Home Menu start-up it uses APT:PrepareToStartNewestHomeMenu. If that doesn't return an error(normally NS returns 0xC8A0CFFC for that), Home Menu starts a hardware reboot with APT:StartNewestHomeMenu etc. " | ||||
| | | * | | HLE/APT: Prepare the APT Wakeup parameter when the game calls Initialize | 2017-09-24 | 1 | -6/+19 | |
| | | |/ | | | | | | | | | | | | | We need to know what is being run so we can set the APT parameter destination AppId correctly. Delaying the preparation of the parameter until we know which AppId is running lets us support booting both the Home Menu and normal game Applications. | ||||
| | * / | Fixed type conversion ambiguity | 2017-09-30 | 1 | -2/+2 | |
| | |/ | |||||
| | * | APT: load different shared font depending on the region | 2017-09-03 | 1 | -134/+152 | |
| | | | |||||
| | * | Services/APT: Use the AppletAttributes union directly when dealing with ↵ | 2017-08-07 | 1 | -19/+15 | |
| | | | | | | | | | applet attrs. | ||||
| | * | Services/APT: Use an array to hold data about the 4 possible concurrent ↵ | 2017-08-07 | 2 | -35/+204 | |
| | | | | | | | | | | | | | applet types (Application, Library, HomeMenu, System). This gives each applet type its own set of events as per the real NS module. | ||||
| | * | telemetry: Add field for RequiresSharedFont. | 2017-08-03 | 1 | -0/+4 | |
| | | | |||||
| | * | Merge pull request #2840 from Subv/apt_parameter | 2017-07-27 | 2 | -33/+105 | |
| |/| | | | | | Services/APT: Corrected the behavior of the Receive/Send/Glance/CancelParameter functions | ||||
| | * | Service/APT: Log Send/Cancel/Receive/GlanceParameter calls even if they ↵ | 2017-07-21 | 1 | -7/+9 | |
| | | | | | | | | | return an error. | ||||
| | * | Services/APT: Return the proper error code when calling SendParameter with ↵ | 2017-07-21 | 2 | -4/+17 | |
| | | | | | | | | | an outstanding parameter already in memory. | ||||
| | * | Services/APT: Reset the APT parameter inside CancelParameter if the ↵ | 2017-07-21 | 1 | -6/+23 | |
| | | | | | | | | | conditions are met. | ||||
| | * | Services/APT: Properly clear the apt parameter after a successful ↵ | 2017-07-21 | 1 | -2/+8 | |
| | | | | | | | | | ReceiveParameter call. | ||||
| | * | Services/APT: Use the right error codes in ReceiveParameter and ↵ | 2017-07-21 | 1 | -0/+28 | |
| | | | | | | | | | GlanceParameter when the parameter doesn't exist. | ||||
| | * | Services/APT: Use boost::optional for the APT parameter structure. | 2017-07-21 | 1 | -20/+26 | |
| | | | |||||
| * | | Merge pull request #2799 from yuriks/virtual-cached-range-flush | 2017-07-22 | 1 | -1/+1 | |
| |\ \ | |/ |/| | Add address conversion functions returning optional, Add function to flush virtual region from rasterizer cache | ||||
| | * | Memory: Make PhysicalToVirtualAddress return a boost::optional | 2017-06-21 | 1 | -1/+1 | |
| | | | | | | | | | And fix a few places in the code to take advantage of that. | ||||
| * | | apt: load shared font from system archive | 2017-06-26 | 1 | -20/+134 | |
| | | | |||||
| * | | apt/shared_font: don't relocate zero offset | 2017-06-26 | 1 | -2/+4 | |
| |/ | |||||
| * | ResultVal: Remove MoveFrom() | 2017-06-18 | 1 | -6/+6 | |
| | | | | | | Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue. | ||||
| * | Created a whitelist of system archives to prevent false positives creating ↵ | 2017-06-02 | 1 | -3/+2 | |
| | | | | | dialogs. | ||||
| * | Added system for handling core errors in citra-qt. | 2017-06-02 | 1 | -2/+5 | |
| | | |||||
| * | Kernel: Move HandleTable to a separate file | 2017-05-29 | 1 | -0/+2 | |
| | | |||||
| * | Merge pull request #2533 from Lectem/apt_ipchelper | 2017-04-06 | 1 | -199/+245 | |
| |\ | | | | | IpcHelper enhancement and APT refactor | ||||
| | * | hopefully fix clang-format issues with old version | 2017-03-20 | 1 | -3/+2 | |
| | | | |||||
| | * | address more comments | 2017-03-19 | 1 | -20/+20 | |
| | | | |||||
| | * | Cast size_t to u32 for PushStaticBuffer usages | 2017-03-18 | 1 | -2/+2 | |
| | | | |||||
| | * | IPCHelper Skip method + address comments for apt | 2017-03-18 | 1 | -36/+38 | |
| | | | |||||
| | * | fix #2560 and other comments | 2017-03-18 | 1 | -19/+19 | |
| | | | |||||
| | * | refactor APT service to use the new IPC helpers | 2017-03-18 | 1 | -191/+236 | |
| | | | |||||
| * | | apt: fix RequestBuilder parameters for Unwrap | 2017-03-18 | 1 | -1/+1 | |
| |/ | |||||
| * | APT: implement Wrap and Unwrap | 2017-02-21 | 5 | -6/+149 | |
| | | |||||
| * | Merge pull request #2249 from Subv/sessions_v3 | 2016-12-14 | 4 | -3/+6 | |
| |\ | | | | | Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication. | ||||
| | * | Fixed the codestyle to match our clang-format rules. | 2016-12-14 | 1 | -1/+2 | |
| | | | |||||
| | * | HLE: Use a member variable instead of a virtual function to retrieve the max ↵ | 2016-12-05 | 4 | -3/+5 | |
| | | | | | | | | | number of sessions that can be connected to an HLE service at the same time. | ||||
| * | | APT::GetStartupArgument: force clear startup argument | 2016-12-11 | 2 | -5/+11 | |
| | | | |||||
| * | | apt: Update apt function tables | 2016-12-07 | 2 | -7/+73 | |
| |/ | | | | Updated based off information from 3dbrew. | ||||
| * | Bravely Default/Second stuck #1822 (#2188) | 2016-11-23 | 4 | -2/+22 | |
| | | | | | | | | | | | | | | | | * Bravely Default/Second stuck #1822 CancelLibraryApplet stub * Log parameter. * Taking care of comments * Sync with 3DBrew * White space ? * lower case | ||||
| * | APT/Applets: Renamed the members of the SignalType enum. | 2016-11-19 | 2 | -7/+18 | |
| | | | | | Names now make sense and match 3dbrew. | ||||
| * | Use negative priorities to avoid special-casing the self-include | 2016-09-21 | 4 | -4/+4 | |
| | | |||||
| * | Remove empty newlines in #include blocks. | 2016-09-21 | 3 | -9/+5 | |
| | | | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | ||||
| * | Manually tweak source formatting and then re-run clang-format | 2016-09-18 | 5 | -18/+17 | |
| | | |||||
| * | Sources: Run clang-format on everything. | 2016-09-18 | 5 | -311/+337 | |
| | | |||||
| * | Merge pull request #2023 from yuriks/autobase-bcfnt | 2016-08-30 | 3 | -30/+68 | |
| |\ | | | | | Auto-detect original shared_font.bin memory base | ||||
| | * | Auto-detect original shared_font.bin memory base | 2016-08-27 | 3 | -30/+68 | |
| | | | | | | | | | | | This allows a file dumped from either an o3DS or a n3DS (and potentially even an original unrebased file) to be used. | ||||
| * | | fix #1942 and adds a few IPC functions for descriptors | 2016-08-02 | 1 | -2/+2 | |
| |/ | |||||