├── .gitignore ├── MMU.c ├── MMU.h ├── Makefile ├── README.md ├── cbprefix.c ├── cbprefix.h ├── cpu.c ├── cpu.h ├── interrupt.c ├── interrupt.h ├── lcd.c ├── lcd.h ├── main.c ├── rom.c ├── rom.h ├── sdl.c ├── sdl.h ├── tetris.gif ├── timer.c └── timer.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/.gitignore -------------------------------------------------------------------------------- /MMU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/MMU.c -------------------------------------------------------------------------------- /MMU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/MMU.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/README.md -------------------------------------------------------------------------------- /cbprefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/cbprefix.c -------------------------------------------------------------------------------- /cbprefix.h: -------------------------------------------------------------------------------- 1 | void cbPrefix(unsigned char inst); -------------------------------------------------------------------------------- /cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/cpu.c -------------------------------------------------------------------------------- /cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/cpu.h -------------------------------------------------------------------------------- /interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/interrupt.c -------------------------------------------------------------------------------- /interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/interrupt.h -------------------------------------------------------------------------------- /lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/lcd.c -------------------------------------------------------------------------------- /lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/lcd.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/main.c -------------------------------------------------------------------------------- /rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/rom.c -------------------------------------------------------------------------------- /rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/rom.h -------------------------------------------------------------------------------- /sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/sdl.c -------------------------------------------------------------------------------- /sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/sdl.h -------------------------------------------------------------------------------- /tetris.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/tetris.gif -------------------------------------------------------------------------------- /timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/timer.c -------------------------------------------------------------------------------- /timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sacert/Gameboy/HEAD/timer.h --------------------------------------------------------------------------------