yuzu-emu.github.io/site/layouts/index.html
2018-01-14 04:22:08 -05:00

151 lines
7.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{ 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="{{ .Site.BaseURL }}/wiki/home/">
<span class="icon is-actionable is-large">
<i class="fas fa-3x fa-code"></i>
</span>
<p class="title is-4">
<strong>Getting Started</strong>
</p>
<p class="subtitle is-6">Build the yuzu source and make a contribution</p>
</a>
<a class="column has-text-centered" href="{{ .Site.BaseURL }}/wiki/switch-hardware-and-software/">
<span class="icon is-actionable is-large">
<i class="fas fa-3x fa-terminal"></i>
</span>
<p class="title is-4">
<strong>Reverse Engineering</strong>
</p>
<p class="subtitle is-6">Learn the Switch hardware and software stack</p>
</a>
<a class="column has-text-centered" href="{{ .Site.BaseURL }}/wiki/switch-homebrew/">
<span class="icon is-actionable is-large">
<i class="fas fa-3x fa-gamepad"></i>
</span>
<p class="title is-4">
<strong>Homebrew Apps</strong>
</p>
<p class="subtitle is-6">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">
<div id="about-section"></div>
<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
<a href="https://github.com/bunnei">bunnei</a>, one of the original authors of the popular
<a href="https://citra-emu.org/">Citra 3DS emulator</a>, 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 teams 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">
<a href="https://en.wikipedia.org/wiki/Citrus_junos">Citrus junos, or yuzu (from Japanese ユズ)</a>, 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>
<!-- Credits Section -->
<section class="hero">
<div class="hero-body">
<div class="container has-text-centered has-text-grey">
<p>Making an emulator for the Nintendo Switch is a massive effort, and wed like to give a huge shout out and thank you to all the folks involved!</p>
<p>Thank you to the Citra team for providing an excellent foundation for this project.
<a href="https://github.com/Subv">Subv</a>, <a href="https://github.com/MerryMage">MerryMage</a>, <a href="https://github.com/jroweboy">jroweboy</a>, <a href="https://github.com/bunnei">bunnei</a>, for their work to jumpstart yuzu.</p>
<p><a href="https://github.com/chris062689">Flame Sage</a>, <a href="https://github.com/j-selby">Selby</a>, <a href="https://github.com/Schplee">Flamboyant Ham</a>, for their work on our web infrastucture.</p>
<p>&nbsp;</p>
<p>Furthermore, we'd like to thank the <a href="https://reswitched.tech/">ReSwitched team</a>, this project would not exist without their excellent work and willingness to share their knowledge:
<a href="https://github.com/SciresM/">SciresM</a>, <a href="https://github.com/daeken">Daeken</a>, <a href="https://github.com/Normmatt">Normmatt</a>, <a href="https://github.com/ogniK5377">ogniK</a>, <a href="https://github.com/hthh">hthh</a>, <a href="https://github.com/TuxSH">TuxSH</a>, <a href="https://github.com/hedgeberg">hedgeberg</a>, <a href="https://github.com/misson20000">misson20000</a>.</p>
</div>
</div>
</section>
{{ end }}