Update Home

zqpvr01 2024-03-22 11:13:55 +01:00
parent 36273d88b5
commit a60bb62dec

28
Home.md

@ -1,29 +1,29 @@
yuzu emulator suyu emulator
============= =============
yuzu is an experimental open-source emulator for the Nintendo Switch from the creators of [Citra](https://citra-emu.org/). It is written in C++ with portability in mind, with builds actively maintained for Windows and Linux. yuzu is licensed under the GPLv2 (or any later version). Refer to the license.txt file included. suyu is an experimental open-source emulator for the Nintendo Switch from the creators of [Citra](https://citra-emu.org/). It is written in C++ with portability in mind, with builds actively maintained for Windows and Linux. suyu is licensed under the GPLv2 (or any later version). Refer to the license.txt file included.
Check out our [website](https://yuzu-emu.org/)! Check out our [website](https://suyu.dev/)!
For development discussion, please join us on [Discord](https://discord.gg/u77vRWY). For development discussion, please join us on [Discord](https://discord.gg/suyu).
## Development ## Development
Most of the development happens on GitHub. It's also where [our central repository](https://github.com/yuzu-emu/yuzu) is hosted. Most of the development happens on GitHub. It's also where [our central repository](https://git.suyu.dev/suyu/suyu) is hosted.
If you want to contribute, please take a look at the [Contributor's Guide](https://github.com/yuzu-emu/yuzu/blob/master/CONTRIBUTING.md) and [Developer Information](https://github.com/yuzu-emu/yuzu/wiki/Developer-Information). You should as well contact any of the developers on Discord in order to know about the current state of the emulator. If you want to contribute, please take a look at the [Contributor's Guide](https://git.suyu.dev/suyu/suyu/blob/master/CONTRIBUTING.md) and [Developer Information](https://git.suyu.dev/suyu/suyu/wiki/Developer-Information). You should as well contact any of the developers on Discord in order to know about the current state of the emulator.
## Usage ## Usage
You may download a precompiled binary from [our website](https://yuzu-emu.org/downloads/), or you can build it yourself from the source code. You may download a precompiled binary from [our website](https://suyu.dev/downloads/), or you can build it yourself from the source code.
* __Windows__: [Windows Build](https://github.com/yuzu-emu/yuzu/wiki/Building-For-Windows) * __Windows__: [Windows Build](https://git.suyu.dev/suyu/suyu/wiki/Building-For-Windows)
* __Linux__: [Linux Build](https://github.com/yuzu-emu/yuzu/wiki/Building-For-Linux) * __Linux__: [Linux Build](https://git.suyu.dev/suyu/suyu/wiki/Building-For-Linux)
* __Android__: [Android Build](https://github.com/yuzu-emu/yuzu/wiki/Building-For-Android) * __Android__: [Android Build](https://git.suyu.dev/suyu/suyu/wiki/Building-For-Android)
**Note: macOS is no longer supported due to Apple deprecating OpenGL and their current version not supporting the OpenGL extensions we require.** ([source](https://www.anandtech.com/show/12894/apple-deprecates-opengl-across-all-oses)) **Note: macOS is no longer supported due to Apple deprecating OpenGL and their current version not supporting the OpenGL extensions we require.** ([source](https://www.anandtech.com/show/12894/apple-deprecates-opengl-across-all-oses))
## Log Filters ## Log Filters
Yuzu supports configurable filtering of log message per-class. This is especially useful if youre debugging a subsystem and want very detailed messages from it or if you want to silence some annoyingly spammy errors (e.g. unimplemented GPU features.) Suyu supports configurable filtering of log message per-class. This is especially useful if youre debugging a subsystem and want very detailed messages from it or if you want to silence some annoyingly spammy errors (e.g. unimplemented GPU features.)
Messages are filtered in each class according to their severity, the filter will block all messages in the class that are below the configured severity. Messages are filtered in each class according to their severity, the filter will block all messages in the class that are below the configured severity.
@ -41,7 +41,7 @@ Class names can be discovered from the log messages themselves. For example, thi
``[ 10.285042] Service core/hle/service/service.h:Service::Interface::SyncRequest:84: unknown/unimplemented function '0x01020000': port=APT:U`` ``[ 10.285042] Service core/hle/service/service.h:Service::Interface::SyncRequest:84: unknown/unimplemented function '0x01020000': port=APT:U``
[A complete list can be found in the source](https://github.com/yuzu-emu/yuzu/blob/a39760b9471283c2d856075b382444e961d78390/src/common/logging/filter.cpp#L65) [A complete list can be found in the source](https://git.suyu.dev/suyu/suyu/blob/a39760b9471283c2d856075b382444e961d78390/src/common/logging/filter.cpp#L65)
To configure the log filter, you need to change the configuration in: To configure the log filter, you need to change the configuration in:
@ -60,11 +60,11 @@ A few examples of filter rules:
- `Service.FS:Trace` -- Sets the level of the Service.FS class to Trace. - `Service.FS:Trace` -- Sets the level of the Service.FS class to Trace.
## Support ## Support
We happily accept monetary donations or donated games and hardware. Please see our [donations page](https://yuzu-emu.org/donate/) for more information on how you can contribute to yuzu. Any donations received will go towards things like: We happily accept monetary donations or donated games and hardware. Please see our [donations page](https://suyu.dev/donate/) for more information on how you can contribute to suyu. Any donations received will go towards things like:
* Switch consoles to explore and reverse-engineer the hardware * Switch consoles to explore and reverse-engineer the hardware
* Switch games for testing, reverse-engineering, and implementing new features * Switch games for testing, reverse-engineering, and implementing new features
* Web hosting and infrastructure setup * Web hosting and infrastructure setup
* Software licenses (e.g. Visual Studio, IDA Pro, etc.) * Software licenses (e.g. Visual Studio, IDA Pro, etc.)
* Additional hardware (e.g. GPUs as-needed to improve rendering support, other peripherals to add support for, etc.) * Additional hardware (e.g. GPUs as-needed to improve rendering support, other peripherals to add support for, etc.)
We also more than gladly accept used Switch consoles, preferably ones with firmware 3.0.0 or lower! If you would like to give yours away, don't hesitate to join our [Discord](https://discord.gg/u77vRWY) and talk to bunnei. You may also contact: [donations@yuzu-emu.org](mailto:donations@yuzu-emu.org). We also more than gladly accept used Switch consoles, preferably ones with firmware 3.0.0 or lower! If you would like to give yours away, don't hesitate to join our [Discord](https://discord.gg/u77vRWY) and talk to bunnei. You may also contact: [donations@suyu.dev](mailto:donations@suyu.dev).