A GameBoy emulator written in C.
  • C 98%
  • Meson 2%
Find a file
2024-12-30 00:59:23 +00:00
src cpu: add M-cycle count return value from sm83_step() 2024-12-30 00:59:23 +00:00
.clang-format clang-format: update to allow case on single lines and trailing comments 2024-12-25 20:46:17 +00:00
.clangd main: add arguments parser with version and help args 2024-12-22 15:46:44 +00:00
.gitignore cpu: fix cb prefix opcodes and cpl 2024-12-29 00:20:28 +00:00
LICENSE add meson build and additional files 2024-12-21 18:26:14 +00:00
meson.build cpu: pass 6/11 of blargg's tests 2024-12-28 23:25:42 +00:00
README.md readme: fix typo 2024-12-23 13:25:16 +00:00

gameboff

A GameBoy emulator written in C.

Running

1. Clone repo

git clone https://github.com/tmkcell/gameboff.git && cd gameboff

2. Compile with meson build system (don't forget to install SDL3/SDL2)

meson setup build
meson compile -C build
meson install -C build

Helpful resources