Skip to content

tomus85/CHIP8

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 24, 2023
4aea206 · Feb 24, 2023

History

1 Commit
Feb 24, 2023
Feb 24, 2023
Feb 24, 2023
Feb 24, 2023
Feb 24, 2023
Feb 24, 2023
Feb 24, 2023
Feb 24, 2023
Feb 24, 2023
Feb 24, 2023

Repository files navigation

Installing sdl

If you have not installed SDL2 then do the following:

brew install sdl2

On Apple Silicon hardware go to this directory

cd /opt/homebrew/Cellar/sdl2

Copy the content fromm /include/sdl2 into your include folder (It should be a folder called SDL2 that contains a bunch of .h files.)


Go to lib and copy the contents (some folders and some .a and .dylib files) into /lib in VScode project


The add the follwing to Makefile

INCLUDES= -I ./include
LIBRARIES= -L lib -l SDL2-2.0.0
FLAGS= -g

all:
	gcc ${FLAGS} ${INCLUDES} ${LIBRARIES} ./src/main.c -o ./bin/main 

SDL2 on mac VSCode
Chip8 ref


GameBoy Doc


Rust NES Doc
Reddit NES Rust
GameBoy Rust

About

Chip8 Emulator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages