mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-22 05:59:15 +01:00
101 lines
5.3 KiB
HTML
101 lines
5.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>SummerCart64 - Home</title>
|
|
<meta property="og:title" content="SummerCart64 - Home" />
|
|
<meta property="og:description" content="SummerCart64 - a fully open source N64 flashcart" />
|
|
<meta property="og:url" content="https://summercart64.dev/" />
|
|
<meta property="og:image" content="https://summercart64.dev/sc64-embed.png" />
|
|
<meta property="og:type" content="website" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" href="favicon.svg" sizes="any" type="image/svg+xml">
|
|
<link rel="stylesheet" href="./styles.css">
|
|
<script src="./script.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="menu-container">
|
|
<div class="menu-bar">
|
|
<div class="menu-buttons">
|
|
<a href="/"><img src="sc64.svg"></a>
|
|
<div class="menu-button" onclick="showMenu(event)">
|
|
<div class="menu-button-line"></div>
|
|
<div class="menu-button-line"></div>
|
|
<div class="menu-button-line"></div>
|
|
</div>
|
|
</div>
|
|
<menu class="mobile-hidden">
|
|
<li class="active"><a href="/">Home</a></li>
|
|
<li><a href="/features.html">Features</a></li>
|
|
<li><a href="https://menu.summercart64.dev">Menu</a></li>
|
|
<li><a href="https://github.com/Polprzewodnikowy/SummerCart64/releases/latest">Downloads</a></li>
|
|
<li><a href="/bom.html">Bill of materials</a></li>
|
|
<li><a href="https://github.com/Polprzewodnikowy/SummerCart64">GitHub</a></li>
|
|
</menu>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="main-container">
|
|
<main>
|
|
<h1>What is SummerCart64?</h1>
|
|
<section>
|
|
<img class="sc64-logo" src="sc64.svg">
|
|
<p>SummerCart64 is a custom made cartridge (commonly referred as a flashcart) that allows you to develop
|
|
and play games on the N64 console. It is the first N64 flashcart that is feature complete and
|
|
completely open source.</p>
|
|
<p>With fast I/O, integrated support in <a href="https://libdragon.dev">libdragon</a> / <a
|
|
href="https://github.com/devwizard64/libcart">libcart</a> / <a
|
|
href="https://github.com/buu342/N64-UNFLoader">UNFLoader</a>, and well documented API, testing
|
|
your homebrew on real hardware was never this easy before!</p>
|
|
<p>SummerCart64 employs features not available in other N64 flashcarts, like <strong>64DD</strong>
|
|
hardware emulation, automatic save backup <strong>during gameplay</strong>, or ability to behave
|
|
like a stock game pak with <strong>direct mode</strong>, making it the best choice for both players
|
|
and game developers. Please check <a href="/features.html">full feature list</a> for more details!
|
|
</p>
|
|
<div class="pcb-images">
|
|
<img src="sc64-render-front.png">
|
|
<img src="sc64-render-back.png">
|
|
</div>
|
|
</section>
|
|
|
|
<div class="separator"></div>
|
|
|
|
<h1>Where to buy</h1>
|
|
<section>
|
|
<p>There are several options available, listed from the easiest to hardest option:</p>
|
|
<ul>
|
|
<li><a href="https://store.phenommod.com/index.php?route=product/product&path=75&product_id=102">SummerCart64
|
|
product page</a> on Phenom Mod store</li>
|
|
<li>Group buys available at <a href="https://discord.gg/WqFgNWf">N64brew Discord Server</a> - check
|
|
threads in the <code><strong>#summer-cart-64</strong></code> channel.</li>
|
|
<li><a href="https://www.pcbway.com/project/member/shareproject/?bmbno=1046ED64-8AEE-44">PCBWay
|
|
Shared Project</a> page - both assembled boards and bare PCBs are available.</li>
|
|
<li>Manual PCB and components order - DIY friendly option.</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<div class="separator"></div>
|
|
|
|
<h1>Support the project</h1>
|
|
<section>
|
|
<p>Like the project? Consider supporting it on the <a
|
|
href="https://github.com/sponsors/Polprzewodnikowy">GitHub Sponsors</a>, <a
|
|
href="https://ko-fi.com/polprzewodnikowy">Ko-fi</a>, or click the buttons below. Not necessary
|
|
but greatly appreciated.</p>
|
|
<div class="sponsor-buttons">
|
|
<iframe src="https://github.com/sponsors/Polprzewodnikowy/button" title="Sponsor Polprzewodnikowy"
|
|
height="32" width="114" style="border: 0; border-radius: 6px;"></iframe>
|
|
<a href='https://ko-fi.com/R5R13I07C' target='_blank'><img height='32'
|
|
src='https://storage.ko-fi.com/cdn/kofi2.png?v=3' alt='Buy Me a Coffee at ko-fi.com' /></a>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
|
|
<footer>
|
|
<span>© 2020 - 2024 <a href="https://mateuszfaderewski.pl">Mateusz Faderewski</a></span>
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |