From 0dd2e2c8a929c7d31b80a7ce0401c508db969bfd Mon Sep 17 00:00:00 2001 From: Michell Stuttgart Date: Mon, 14 May 2018 07:39:32 -0300 Subject: [PATCH] Add Emulator category and new 'How to' emulation tutorials --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6730294..2e6e37c 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ - [Bot](#build-your-own-bot) - [Database](#build-your-own-database) - [Docker](#build-your-own-docker) +- [Emulator](#build-your-own-emulator) - [Front-end Framework / Library](#build-your-own-front-end-framework--library) - [Game](#build-your-own-game) - [Git](#build-your-own-git) @@ -79,6 +80,15 @@ * [**Python**: *A proof-of-concept imitation of Docker, written in 100% Python*](https://github.com/tonybaloney/mocker) * [**Shell**: *Docker implemented in around 100 lines of bash*](https://github.com/p8952/bocker) +#### Build your own `Emulator` + +* [**C++**: *How to write an emulator (CHIP-8 interpreter)*](http://www.multigesture.net/articles/how-to-write-an-emulator-chip-8-interpreter/) +* [**C++**: *Emulation tutorial (CHIP-8 interpreter)*](http://www.codeslinger.co.uk/pages/projects/chip8.html) +* [**C++**: *Emulation tutorial (GameBoy emulator)*](http://www.codeslinger.co.uk/pages/projects/gameboy.html) +* [**C++**: *Emulation tutorial (Master System emulator)*](http://www.codeslinger.co.uk/pages/projects/mastersystem/memory.html) +* [**Javascript**: *GameBoy Emulation in JavaScript*](http://imrannazar.com/GameBoy-Emulation-in-JavaScript) +* [**Python**: *Emulation Basics: Write your own Chip 8 Emulator/Interpreter*](http://omokute.blogspot.com.br/2012/06/emulation-basics-write-your-own-chip-8.html) + #### Build your own `Front-end Framework / Library` * [**JavaScript**: *WTF is JSX (Let's Build a JSX Renderer)*](https://jasonformat.com/wtf-is-jsx/) @@ -211,7 +221,6 @@ * [**C**: *Learn how to write a hash table in C*](https://github.com/jamesroutley/write-a-hash-table) * [**C**: *Writing an SVG Library*](http://www.code-in-c.com/writing-svg-library-c/) * [**C++**: *Build your own VR headset for $100*](https://github.com/relativty/Relativ) -* [**C++**: *How to write an emulator (CHIP-8 interpreter)*](http://www.multigesture.net/articles/how-to-write-an-emulator-chip-8-interpreter/) * [**C++**: *How X Window Managers work and how to write one*](https://seasonofcode.com/posts/how-x-window-managers-work-and-how-to-write-one-part-i.html) * [**C++**: *Writing a Linux Debugger*](https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/) * [**C++**: *How a 64k intro is made*](http://www.lofibucket.com/articles/64k_intro.html)