| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-05-24 | result: Make error description a generic integer | Yuri Kunde Schlesner | |
| It is now known that result code description vary depending on the module, and so they're best defined on a per-module basis. To support this, allow passing in an arbitrary integer instead of limiting to the ones in the ErrorDescription enum. These will be gradually migrated to their individual users, but a few will be kept as "common" codes shared by all modules. | |||
| 2017-05-24 | Make BitField and ResultCode constexpr-initializable | Yuri Kunde Schlesner | |
| 2017-05-24 | telemetry: Log a few simple data fields throughout core. | bunnei | |
| 2017-05-24 | core: Keep track of telemetry for the current emulation session. | bunnei | |
| 2017-05-24 | cam: move u32->u8 trancation to IPCHelper | wwylele | |
| 2017-05-24 | cam: use IPCHelper | wwylele | |
| 2017-05-22 | Merge pull request #2692 from Subv/vfp_ftz | Sebastian Valle | |
| Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled. | |||
| 2017-05-21 | Merge pull request #2406 from Subv/session_disconnect | Yuri Kunde Schlesner | |
| Kernel: Properly update port counters on session disconnection. | |||
| 2017-05-21 | fixup! Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled. | Subv | |
| 2017-05-21 | Kernel/Sessions: Remove the ClientSession::Create function. | Subv | |
| It is not meant to be used by anything other than CreateSessionPair. | |||
| 2017-05-22 | Merge pull request #2694 from Subv/vfp_vsub_ftz | Merry | |
| Dyncom/VFP: Perform flush-to-zero on the second operand of vsub before sending it to vadd. | |||
| 2017-05-19 | Merge pull request #2661 from Subv/uds5 | bunnei | |
| Services/UDS: Generate 802.11 beacon frames when a network is open. | |||
| 2017-05-19 | use IPCHelper for PTM services | emmaus | |
| 2017-05-15 | Services/UDS: Use the new IPC helper functions. | Subv | |
| 2017-05-15 | Services/UDS: Implement RecvBeaconBroadcastData. | Subv | |
| This allows the applications to retrieve 802.11 beacon frames from nearby UDS networks. Note that the networks are still not announced anywhere. | |||
| 2017-05-15 | Services/UDS: Generate the UDS beacons when the beacon callback fires. | Subv | |
| 2017-05-15 | Kernel: Remove a now unused enum and variable regarding a session's status. | Subv | |
| 2017-05-15 | Kernel: Use a Session object to keep track of the status of a Client/Server ↵ | Subv | |
| session pair. Reduce the associated port's connection count when a ServerSession is destroyed. | |||
| 2017-05-14 | Merge pull request #2687 from yuriks/address-mappings | Yuri Kunde Schlesner | |
| Kernel: Map special regions according to ExHeader | |||
| 2017-05-13 | Dyncom/VFP: Perform flush-to-zero on the second operand of vsub before ↵ | Subv | |
| sending it to vadd. Previously we were letting vadd flush the value to positive 0, but there are cases where this behavior is wrong, for example, vsub: -0 - +0 = -0 vadd: -0 + +0 = +0 Now we'll flush the value to +0 inside vsub, and then negate it. | |||
| 2017-05-10 | Merge pull request #2676 from wwylele/irrst | bunnei | |
| ir: implement new 3ds HID via ir:rst | |||
| 2017-05-09 | Kernel: Map special regions according to ExHeader | Yuri Kunde Schlesner | |
| This replaces the hardcoded VRAM/DSP mappings with ones made based on the ExHeader ARM11 Kernel caps list. While this has no visible effect for most applications (since they use a standard set of mappings) it does improve support for system modules and n3DS exclusives. | |||
| 2017-05-09 | DSP: Create backing memory for entire DSP RAM | Yuri Kunde Schlesner | |
| Also move address space mapping out of video_core. | |||
| 2017-05-09 | Memory: Add constants for the n3DS additional RAM | Yuri Kunde Schlesner | |
| This is 4MB of extra, separate memory that was added on the New 3DS. | |||
| 2017-05-08 | Merge pull request #2696 from Subv/vfp_revert | Yuri Kunde Schlesner | |
| Dyncom/VFP: Revert edf30d8 and fix the FPSCR getting invalid values. | |||
| 2017-05-09 | Dyncom/VFP: Strip the VFP_NAN_FLAG sentinel value when setting vfp exceptions. | Subv | |
| 2017-05-09 | Revert "Remove `exceptions` parameter from `normaliseround` VFP functions" | Subv | |
| This reverts commit edf30d84cc0e8299d61c98f5bb40a6428d1576bc. Conflicts: src/core/arm/skyeye_common/vfp/vfp_helper.h src/core/arm/skyeye_common/vfp/vfpdouble.cpp src/core/arm/skyeye_common/vfp/vfpsingle.cpp | |||
| 2017-05-08 | Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled. | Subv | |
| Inputs are still not flushed to 0 if they are denormals. | |||
| 2017-05-07 | Dyncom: Remove disassembler code | Yuri Kunde Schlesner | |
| Had licensing issue around it, in addition to several bugs. Closes #1632, #1280 | |||
| 2017-05-07 | Dyncom: Tweak types and log formatting | Yuri Kunde Schlesner | |
| 2017-05-07 | Remove unused symbols code | Yuri Kunde Schlesner | |
| 2017-05-07 | Remove ability to load symbol maps | Yuri Kunde Schlesner | |
| This was now mostly unused except by thread creation, which used a symbol of the entrypoint, if available, to name the thread. | |||
| 2017-05-07 | fixup!ir: implement new 3ds HID via ir:rst | wwylele | |
| 2017-05-05 | Create a random console_unique_id (#2668) | B3n30 | |
| * Create a random console_id when config save_file is created Added button in system config to refresh the console unique id * Moved the connect for the button from .ui file to constructor of ConfigureSystem * Added warning and info dialog Fixup: Make use of qt5 style connects, renamed the refresh button, removed some duplicate code, changed random device and moved all to the generate function * Changed the random generator to reflect what a real 3DS stores as console unique id Fixup: Changed the warning message * Fixup: Set and Create * Fixup: Added console id label, therfore removed second message box * Fixup: fixed the endianess * Fixup: more endianness fixes * Fixup: Endianness the 3rd | |||
| 2017-05-04 | ir: implement new 3ds HID via ir:rst | wwylele | |
| 2017-05-03 | Merge pull request #2606 from wwylele/ir | bunnei | |
| ir: implement circle pad pro | |||
| 2017-05-03 | ir: implement circle pad pro | wwylele | |
| 2017-04-18 | Merge pull request #2532 from wwylele/ldrro-ipc | Yuri Kunde Schlesner | |
| ldr_ro: use IPC helper | |||
| 2017-04-17 | ldr_ro: use IPC helper | wwylele | |
| 2017-04-13 | Merge pull request #2659 from MerryMage/dsp_dsp-correction | bunnei | |
| dsp_dsp: Messages are modified by service before being sent to DSP | |||
| 2017-04-12 | dsp_dsp: Messages are modified by service before being sent to DSP | MerryMage | |
| 2017-04-12 | Merge pull request #2628 from Subv/uds | Sebastian Valle | |
| Services/UDS: Initial support for hosting local-wlan networks. | |||
| 2017-04-06 | Merge pull request #2533 from Lectem/apt_ipchelper | bunnei | |
| IpcHelper enhancement and APT refactor | |||
| 2017-04-06 | Merge pull request #2634 from wwylele/battery | bunnei | |
| shared_page: stub battery state | |||
| 2017-04-03 | error conversion fixes for soc_u | noah the goodra | |
| 2017-04-01 | Fix OutputDebugString syscall | Michael Theall | |
| 2017-03-27 | Services/UDS: Fixed a style mistake in GetChannel. | Sebastian Valle | |
| 2017-03-26 | Services/UDS: Use consistent spelling for WiFi and simplify the GetChannel ↵ | Subv | |
| function. | |||
| 2017-03-26 | Services/UDS: Signal the connection event when closing down the network. | Subv | |
| 2017-03-26 | Services/UDS: Do not allow trying to start up a network that only the host ↵ | Subv | |
| can connect to. | |||
