mirror of
https://github.com/yuzu-emu/yuzu-emu.github.io.git
synced 2024-12-02 21:24:18 +01:00
131 lines
5.9 KiB
HTML
131 lines
5.9 KiB
HTML
{{ define "main" }} {{ partial "home_hero" . }}
|
||
|
||
<!-- Wiki 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-code"></i>
|
||
</span>
|
||
<p class="title is-4">
|
||
<strong>Getting Started</strong>
|
||
</p>
|
||
<p class="subtitle">Build the yuzu source and make a contribution</p>
|
||
</a>
|
||
|
||
<a class="column has-text-centered" href="https://www.google.com">
|
||
<span class="icon is-large">
|
||
<i class="fas fa-3x fa-terminal"></i>
|
||
</span>
|
||
<p class="title is-4">
|
||
<strong>Hacking the Switch</strong>
|
||
</p>
|
||
<p class="subtitle">Learn about the Switch hardware and software stack</p>
|
||
</a>
|
||
|
||
<a class="column has-text-centered" href="https://www.google.com">
|
||
<span class="icon is-large">
|
||
<i class="fas fa-3x fa-gamepad"></i>
|
||
</span>
|
||
<p class="title is-4">
|
||
<strong>Homebrew Development</strong>
|
||
</p>
|
||
<p class="subtitle">Tools and resources to get started with Switch homebrew</p>
|
||
</a>
|
||
</nav>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- About Yuzu Section -->
|
||
<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>
|
||
|
||
<div class="tile is-ancestor">
|
||
<div class="tile is-parent">
|
||
<div class="card">
|
||
<div class="card-content">
|
||
<p class="title is-4">Can I play Switch games?</p>
|
||
<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">
|
||
<div class="card-content">
|
||
<p class="title is-4">When will yuzu run games?</p>
|
||
<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">
|
||
<div class="card-content">
|
||
<p class="title is-4">Where does the name come from?</p>
|
||
<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>
|
||
</section>
|
||
|
||
<!-- Advertisement -->
|
||
<section class="hero is-info">
|
||
<div class="hero-body">
|
||
<div class="container has-text-centered">
|
||
<ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="{{ .Site.Params.GoogleAdsenseClient }}"
|
||
data-ad-slot="{{ .Site.Params.GoogleAdsenseSlot }}"></ins>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Twitter Feed -->
|
||
<section class="section">
|
||
<div class="container">
|
||
<div class="tile is-ancestor">
|
||
{{ range sort .Site.Data.twitter "order" }}
|
||
<div class="tile is-parent">
|
||
{{ partial "widget/tweet.html" . }}
|
||
</div>
|
||
{{ end }}
|
||
</div>
|
||
</div>
|
||
</section>
|
||
{{ end }} |