Commit Graph

737 Commits (67a8740af6c13d42f3c361c0f242cfa52f94b754)

Author SHA1 Message Date
Liam 67a8740af6 kernel: add KCapabilities 2 years ago
bunnei a5693afa03
Revert "Revert "k_page_group: synchronize"" 2 years ago
gidoly 10eaf31af3
Revert "k_page_group: synchronize" 2 years ago
Liam 3392fdac9b k_page_group: synchronize 2 years ago
Liam c770f25ccb kernel: remove TimeManager 2 years ago
Liam 67c0d714c5 kernel: add KHardwareTimer 2 years ago
liamwhite 04779b3d2a
Merge pull request #9369 from german77/mifare
service: nfc: Implement mifare service
2 years ago
Alexandre Bouvier 8e17b5469f cmake: prefer system libraries 2 years ago
Narr the Reg a4725bcb73 service: nfc: Implement mifare service 2 years ago
ameerj 37bc5118ea CMake: Use precompiled headers 2 years ago
Narr the Reg db7bcd51ae
Merge branch 'master' into nfc_impl 2 years ago
Narr the Reg 327d225c3e service: nfc: Implement nfc user 2 years ago
german77 fb57cd26a1 service: am: Implement cabinet applet backend 2 years ago
Liam cbaf642ffe Initial ARM64 support 2 years ago
bunnei 6f941121e6 core: hle: kernel: Add KSystemResource. 2 years ago
bunnei 0897f4f96c core: hle: kernel: Add KPageTableManager. 2 years ago
bunnei 6d4f411c08 core: hle: kernel: Add KPageTableSlabHeap. 2 years ago
bunnei 37b17252d1 core: hle: kernel: Add KEventInfo. 2 years ago
bunnei ddd3f48736 core: hle: kernel: Add KDebug. 2 years ago
Morph e6ab1f673b general: Enforce C4800 everywhere except in video_core 2 years ago
Morph 93297d14d8 CMakeLists: Remove all redundant warnings
These are already explicitly or implicitly set in src/CMakeLists.txt
2 years ago
Liam 3efb8eb2dc kernel: add KSessionRequest 2 years ago
bunnei d02ccfb15d core: hle: kernel: Add KDynamicResourceManager. 2 years ago
bunnei 9ec5f75f43 core: hle: kernel: Add KDynamicSlabHeap. 2 years ago
bunnei 345b9e6a08 core: hle: kernel: Add KDynamicPageManager. 2 years ago
Liam a9ace6856d kernel: remove KWritableEvent 2 years ago
Fernando Sahmkow 920429fde7 NVDRV: Further refactors and eliminate old code. 2 years ago
Fernando Sahmkow 3cbe352c18 NVDRV: Refactor and add new NvMap. 2 years ago
bunnei 61399de5db
Merge pull request #8955 from german77/amiibo-rewrite
core: nfp: Rewrite implementation to remove direct access from the frontend
2 years ago
german77 afea5c163f service: nfp: Rewrite and implement applet calls 2 years ago
bunnei 2a752bbd64
Merge pull request #8876 from FearlessTobi/multiplayer-part3
ldn: Implement "local wireless" networked multiplayer
2 years ago
Narr the Reg 23589ad9b8 service: hid: Partially implement palma controller 3 years ago
bunnei 7172339c7a
Merge pull request #8827 from german77/amiibo_release
core: nfp: Implement amiibo encryption
3 years ago
FearlessTobi f5e635adda ldn: Initial implementation 3 years ago
SachinVin 9c6cd93195 core/CMakeLists.txt: Remove duplicate files. 3 years ago
german77 848f69eb19 core: nfp: Implement amiibo encryption 3 years ago
liamwhite 3faa1c54b6
Merge pull request #8855 from german77/pls
core: ns: Implement pl:s service
3 years ago
Narr the Reg c7a814f10f core: ns: Implement pl:s service 3 years ago
FearlessTobi b904652d69 yuzu_room: Remove dependency on core 3 years ago
liamwhite b99596e312
Merge pull request #8660 from Tachi107/findmodules-pkg-config
build: simplify find modules
3 years ago
FearlessTobi f80c7c4cd5 core, network: Add ability to proxy socket packets 3 years ago
liamwhite 536626fdd6
Merge pull request #8731 from FearlessTobi/better-ldn
ldn: Add better stubs and more data types
3 years ago
bunnei 01bb5d5c4d
Merge pull request #8637 from liamwhite/bad-interrupts
kernel: unlayer CPU interrupt handling
3 years ago
FearlessTobi 12dc05032b ldn: Add better stubs and more data types
Co-Authored-By: Narr the Reg <5944268+german77@users.noreply.github.com>
Co-Authored-By: Morph <39850852+Morph1984@users.noreply.github.com>
3 years ago
Liam 00299479ab core/loader: remove ELF loader 3 years ago
Andrea Pappacoda adc8c03fe4
build(externals): rename Findopus to FindOpus
This better matches upstream's FindOpus.cmake file, and it will make
using upstream's FindOpus.cmake file easier.
3 years ago
liamwhite 64fd9f41a7
Merge pull request #8636 from german77/irs_cluster_release
service: irs: Implement clustering processor
3 years ago
Andrea Pappacoda cdb240f3d4
chore: make yuzu REUSE compliant
[REUSE] is a specification that aims at making file copyright
information consistent, so that it can be both human and machine
readable. It basically requires that all files have a header containing
copyright and licensing information. When this isn't possible, like
when dealing with binary assets, generated files or embedded third-party
dependencies, it is permitted to insert copyright information in the
`.reuse/dep5` file.

Oh, and it also requires that all the licenses used in the project are
present in the `LICENSES` folder, that's why the diff is so huge.
This can be done automatically with `reuse download --all`.

The `reuse` tool also contains a handy subcommand that analyzes the
project and tells whether or not the project is (still) compliant,
`reuse lint`.

Following REUSE has a few advantages over the current approach:

- Copyright information is easy to access for users / downstream
- Files like `dist/license.md` do not need to exist anymore, as
  `.reuse/dep5` is used instead
- `reuse lint` makes it easy to ensure that copyright information of
  files like binary assets / images is always accurate and up to date

To add copyright information of files that didn't have it I looked up
who committed what and when, for each file. As yuzu contributors do not
have to sign a CLA or similar I couldn't assume that copyright ownership
was of the "yuzu Emulator Project", so I used the name and/or email of
the commit author instead.

[REUSE]: https://reuse.software

Follow-up to 01cf05bc75
3 years ago
FearlessTobi 6c8e456185 Address first part of review comments 3 years ago
FearlessTobi 705f7db84d yuzu: Add ui files for multiplayer rooms 3 years ago