| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-07-14 | k_process: PageTable -> GetPageTable | Liam | |
| 2023-07-12 | file_sys/content_archive: Detect compressed NCAs (#11047) | Tobias | |
| 2023-07-11 | Merge pull request #10985 from liamwhite/handle-translate | bunnei | |
| k_server_session: translate special header for non-HLE requests | |||
| 2023-07-10 | Merge pull request #10996 from Kelebek1/readblock_optimisation | bunnei | |
| Use spans over guest memory where possible instead of copying data | |||
| 2023-07-09 | arm_interface: correct breakpoint rewind condition | Liam | |
| 2023-07-08 | k_server_session: translate special header for non-HLE requests | Liam | |
| 2023-07-06 | vfs_real: use open file size for getting size (#11016) | liamwhite | |
| 2023-07-02 | service: nfc: Ensure controller is in the correct mode | german77 | |
| 2023-07-02 | Use spans over guest memory where possible instead of copying data. | Kelebek1 | |
| 2023-07-02 | Merge pull request #10998 from Morph1984/qt-stop-messing-with-me | liamwhite | |
| core_timing: Remove GetCurrentTimerResolution in CoreTiming loop | |||
| 2023-07-02 | Merge pull request #10969 from Morph1984/k-synchronize | liamwhite | |
| kernel: Synchronize | |||
| 2023-07-02 | core_timing: Remove GetCurrentTimerResolution in CoreTiming loop | Morph | |
| Other programs may change this value, but if thousands of syscalls in this loop is undesirable, then we can just set this once. | |||
| 2023-07-02 | Merge pull request #10942 from FernandoS27/android-is-a-pain-in-the-a-- | liamwhite | |
| Memory Tracking: Add mechanism to register small writes when gpu page is contested by GPU | |||
| 2023-07-02 | Merge pull request #10710 from liamwhite/romfs2 | liamwhite | |
| fsmitm_romfsbuild: avoid full path lookups | |||
| 2023-07-01 | kernel: Synchronize | Morph | |
| 2023-06-30 | parcel: Optimize small_vector sizes | Morph | |
| 2023-06-30 | general: Use ScratchBuffer where possible | Morph | |
| 2023-06-29 | Memory Tracker: Use 64 bit atomics instead of 128 bits | Fernando Sahmkow | |
| 2023-06-28 | Memory Tracking: Optimize tracking to only use atomic writes when contested ↵ | Fernando Sahmkow | |
| with the host GPU | |||
| 2023-06-28 | MemoryTracking: Initial setup of atomic writes. | Fernando Sahmkow | |
| 2023-06-27 | fsmitm_romfsbuild: avoid full path lookups | Liam | |
| 2023-06-27 | arm_dynarmic_32: Remove disabling of block linking on arm64 | Merry | |
| 2023-06-24 | core: hid: Allow to read bin files while switch controller is available | german77 | |
| 2023-06-24 | input_common: Dont try to read/write data from 3rd party controllers | german77 | |
| 2023-06-23 | Merge pull request #10859 from liamwhite/no-more-atomic-wait | liamwhite | |
| general: remove atomic signal and wait | |||
| 2023-06-23 | Merge pull request #10842 from german77/native_mifare | liamwhite | |
| input_common: Implement native mifare/skylander support for joycons/pro controller | |||
| 2023-06-23 | vfs_real: lock concurrent accesses | Liam | |
| 2023-06-22 | Merge pull request #10457 from Kelebek1/optimise | bunnei | |
| Remove memory allocations in some hot paths | |||
| 2023-06-22 | Merge pull request #10806 from liamwhite/worst-fs-implementation-ever | bunnei | |
| vfs_real: misc optimizations | |||
| 2023-06-22 | general: remove atomic signal and wait | Liam | |
| 2023-06-22 | Remove memory allocations in some hot paths | Kelebek1 | |
| 2023-06-21 | Merge pull request #10086 from Morph1984/coretiming-ng-1 | bunnei | |
| core_timing: Use CNTPCT as the guest CPU tick | |||
| 2023-06-21 | Merge pull request #10841 from liamwhite/math-is-hard | bunnei | |
| vfs_concat: fix offset calculation when not aligned to file boundary | |||
| 2023-06-21 | input_common: Implement native mifare support | Narr the Reg | |
| 2023-06-20 | time_zone_manager: Add null terminator | lat9nq | |
| We aren't null-terminating this string after the copy, and we need to. | |||
| 2023-06-20 | time_zone_manager: Stop on comma | lat9nq | |
| This is a deviation from the reference time zone implementation. The actual code will set a pointer to the time zone name here, but for us we have a limited number of characters to work with, and the name of the time zone here could be larger than 8 characters. We can make the assumption that time zone names greater than five characters in length include a comma that denotes more data. Nintendo just truncates that data for the name, so we can do the same. time_zone_manager: Check for length of array Just to be double sure that we never break past the array length, directly compare against it. | |||
| 2023-06-19 | vfs_concat: verify short read | Liam | |
| 2023-06-18 | vfs_concat: fix offset calculation when not aligned to file boundary | Liam | |
| 2023-06-17 | Merge pull request #10797 from lat9nq/tzdb-patch | bunnei | |
| time: Various time zone fixes | |||
| 2023-06-17 | time_zone_service: Always write time zone rule data | lat9nq | |
| Switch firmware will initialize this data even if the given parameters are invalid. We should do the same. | |||
| 2023-06-17 | k_thread: Use a mutex and cond_var to sync bool | lat9nq | |
| std::atomic<bool> is broken on MinGW and causes deadlocks there. Use a normal cond var in its stead. | |||
| 2023-06-16 | Merge pull request #10731 from german77/misc_fixes | liamwhite | |
| service: nfc: Accuracy fixes | |||
| 2023-06-16 | vfs_real: ensure size cache is reset on write | Liam | |
| 2023-06-16 | patch_manager: remove unnecessary GetSize calls | Liam | |
| 2023-06-16 | vfs_real: misc optimizations | Liam | |
| 2023-06-15 | time_zone_manager: Compare to the correct boolean | lat9nq | |
| Reference implementation does not compare the booleans as we had them. Use the correct ones as in the reference. Also adds an assert. I have been made aware of a crash here and am not able to reproduce currently. | |||
| 2023-06-15 | nx_tzdb: Correct Antarctica spelling | lat9nq | |
| 2023-06-14 | Merge pull request #10729 from liamwhite/windows-is-a-meme | bunnei | |
| vfs_real: add file LRU cache for open file limits | |||
| 2023-06-14 | service: nfc: Read tag protocol only for nfc backend | Narr the Reg | |
| 2023-06-14 | service: nfc: Accuracy fixes | Narr the Reg | |
