Skip to content

Instantly share code, notes, and snippets.

View mingshun's full-sized avatar

mingshun

View GitHub Profile
@OwenChia
OwenChia / c8emu.c
Last active June 16, 2021 16:43
Chip 8 Emu - C & WASM version - https://owenchia.coding.me/c8emu/
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <emscripten.h>
#define SCREEN_W 64