mirror of
https://github.com/yuzu-emu/yuzu-emu.github.io.git
synced 2024-12-02 21:24:18 +01:00
128 lines
5.9 KiB
HTML
128 lines
5.9 KiB
HTML
{{ define "main" }} {{ partial "home_hero" . }}
|
||
|
||
<section class="hero is-info">
|
||
<div class="hero-body">
|
||
<div class="container">
|
||
<nav class="columns">
|
||
|
||
<a class="column has-text-centered" href="https://www.google.com">
|
||
<span class="icon is-large">
|
||
<i class="fas fa-3x fa-cubes"></i>
|
||
</span>
|
||
<p class="title is-4">
|
||
<strong>Yuzu Development</strong>
|
||
</p>
|
||
<p class="subtitle">Custom Builds!</p>
|
||
</a>
|
||
|
||
<a class="column has-text-centered" href="https://www.google.com">
|
||
<span class="icon is-large">
|
||
<i class="fas fa-3x fa-cubes"></i>
|
||
</span>
|
||
<p class="title is-4">
|
||
<strong>Switch Hacking</strong>
|
||
</p>
|
||
<p class="subtitle">Cool!</p>
|
||
</a>
|
||
|
||
<a class="column has-text-centered" href="https://www.google.com">
|
||
<span class="icon is-large">
|
||
<i class="fas fa-3x fa-cubes"></i>
|
||
</span>
|
||
<p class="title is-4">
|
||
<strong>Switch Homebrew</strong>
|
||
</p>
|
||
<p class="subtitle">You can do that?</p>
|
||
</a>
|
||
</nav>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<a name="about"></a>
|
||
<section class="hero">
|
||
<div class="hero-body">
|
||
<div class="container">
|
||
<h1 class="title">About</h1>
|
||
<div class="content">
|
||
<p>
|
||
yuzu is a work-in-progress Nintendo Switch emulator. yuzu is an open-source project, licensed under the GPLv2 (or any later
|
||
version). yuzu has been designed with portability in mind, with builds available for Windows, Linux,
|
||
and macOS. The project was started in spring of 2017 by bunnei, one of the original authors of the popular
|
||
Citra 3DS emulator, to experiment with and research the Nintendo Switch. Due to the similarities between
|
||
Switch and 3DS, yuzu was developed as a fork of Citra. This means that it uses the same project architecture,
|
||
and both emulators benefit from shared improvements. During the early months of development, work was
|
||
done in private, and progress was slow. However, as Switch reverse-engineering and homebrew development
|
||
became popular, work on yuzu began to take off as well.
|
||
</p>
|
||
|
||
<p>
|
||
In January of 2018, the yuzu team was formed out of several Citra developers, and the decision was made to release the project
|
||
publicly. As an emulator, yuzu is in its infancy, and is only currently useful for Switch reverse-engineering
|
||
and homebrew development.
|
||
</p>
|
||
|
||
<div class="tile is-ancestor">
|
||
<div class="tile is-parent">
|
||
<div class="card">
|
||
<header class="card-header">
|
||
<p class="card-header-title">Can I use yuzu to play Switch games?</p>
|
||
</header>
|
||
<div class="card-content">
|
||
<div class="content">
|
||
No – at this time, yuzu does not run any commercial Switch games. yuzu can boot some games, to varying degrees of success,
|
||
but does not implement any of the necessary GPU features to render 3D graphics.
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="tile is-parent">
|
||
<div class="card">
|
||
<header class="card-header">
|
||
<p class="card-header-title">When will yuzu run games?</p>
|
||
</header>
|
||
<div class="card-content">
|
||
<div class="content">
|
||
In short – we do not know how soon games might run. While yuzu is making great progress, Switch emulation is very complex.
|
||
Running games is one of the team’s top priorities, so we are actively working toward
|
||
that goal!
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="tile is-parent">
|
||
<div class="card">
|
||
<header class="card-header">
|
||
<p class="card-header-title">Where does the name come from?</p>
|
||
</header>
|
||
<div class="card-content">
|
||
<div class="content">
|
||
Citrus junos, or yuzu (from Japanese ユズ), is a citrus fruit, most commonly used in Asian cuisines. This name was chosen as
|
||
an homage to Citra and its developers, whose work gave the foundation for this project.
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<a name="updates"></a>
|
||
<section class="section">
|
||
<div class="container">
|
||
<div class="columns is-multiline">
|
||
{{ range sort .Site.Data.twitter "order" }}
|
||
<div class="column is-one-third">
|
||
{{ partial "widget/tweet.html" . }}
|
||
</div>
|
||
{{ end }}
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
{{ end }} |