aboutsummaryrefslogtreecommitdiff
path: root/projects/chip8emu.html
diff options
context:
space:
mode:
Diffstat (limited to 'projects/chip8emu.html')
-rw-r--r--projects/chip8emu.html94
1 files changed, 94 insertions, 0 deletions
diff --git a/projects/chip8emu.html b/projects/chip8emu.html
new file mode 100644
index 0000000..7e0aab0
--- /dev/null
+++ b/projects/chip8emu.html
@@ -0,0 +1,94 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <meta name="description" content="RAGHURAM SUBRAMANI ~ COMPROMYSE | Hacker & Programmer">
+
+ <title>CHIP8Emu | COMPROMYSE</title>
+
+ <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
+ <link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
+ <link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
+ <link rel="manifest" href="/assets/favicon/site.webmanifest">
+
+ <link href="/assets/stylesheet.css" rel="stylesheet" />
+
+ <link rel="preconnect" href="https://fonts.googleapis.com">
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+ <link href="https://fonts.googleapis.com/css2?family=Jersey+15&display=swap" rel="stylesheet">
+
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/base16/ashes.min.css" defer>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
+ <script defer>hljs.highlightAll();</script>
+
+ </head>
+ <body class="bg-zinc-900 text-pink-300 font-['Jersey_15'] selection:text-pink-900 selection:bg-pink-100 lg:text-xl">
+ <div class="min-h-screen flex flex-col">
+
+ <nav class="w-full mx-auto mt-10">
+ <div class="flex flex-wrap items-center px-10 gap-4 text-center text-lg lg:text-2xl">
+
+ <a href="/" class="cursor-pointer font-bold hover:underline justify-center button">
+ COMPROMYSE
+ </a>
+
+ <div class="flex items-center gap-4 flex-wrap justify-center md:justify-left">
+ <a href="/projects" class="hover:underline">
+ [ PROJECTS ]
+ </a>
+
+ </div>
+
+ </div>
+</nav>
+
+
+ <div class="flex flex-grow flex-col py-8 px-14 items-center">
+
+ <div class="text-center flex flex-col gap-4 w-full max-w-100">
+ <h1 class="text-5xl font-semibold">CHIP8Emu</h1>
+ <div>
+ <h4 class="text-xl">An Emulator/Interpreter for CHIP-8.</h4>
+ <h6 class="text-center text-sm border-t-4 mt-2 py-1">C++</h6>
+ </div>
+
+ <a href="https://github.com/compromyse/autograd" target="_blank" class="button">SOURCE</a>
+ </div>
+
+ <div class="prose md:prose-lg lg:prose-2xl prose-pink prose-invert w-full max-w-256 pt-12">
+ <p><img src="https://github.com/compromyse/CHIP8Emu/assets/71056504/f87e9e73-f880-4d60-a61b-cdb40791211b" class="mx-auto" /></p>
+
+<h2>About The Project</h2>
+
+<p>CHIP8Emu is an emulator for the 1977 interpreter CHIP-8 written in C++. It aims to make games designed for the same playable on modern hardware.</p>
+
+<h2>Compilation &amp; Usage</h2>
+
+<p>For compilation, you need Clang, CMake, GNUMake, and SDL2. With them installed, run the following.
+<pre><code class="sh">mkdir build; cd build
+cmake ..
+make
+</code></pre>
+Replace <code>[scale]</code> with your preferred display scaling, <code>[delay]</code> with the your preferred delay, and <code>[ROM]</code> with the path to the game you intend to play.
+<pre><code class="sh">./chip8emu [scale] [delay] [ROM]
+</code></pre>
+</p>
+
+ </div>
+
+ </div>
+ <footer class="w-full pb-4 pt-12 px-8 text-sm md:text-lg">
+ <div class="text-center">
+ <p>The Quieter You Become, The More You Are Able To Hear.</p>
+ </div>
+</footer>
+
+
+ </div>
+ </body>
+</html>
+
+