{"id":30558330,"url":"https://github.com/tmpstpdwn/chip-8","last_synced_at":"2025-08-28T08:26:49.380Z","repository":{"id":305485983,"uuid":"1022932381","full_name":"tmpstpdwn/CHIP-8","owner":"tmpstpdwn","description":"A CHIP-8 emulator written in c.","archived":false,"fork":false,"pushed_at":"2025-07-20T11:41:12.000Z","size":807,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-20T12:14:25.478Z","etag":null,"topics":["c","c-programming","chip8","chip8-emulator","emulator","low-level-programming"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tmpstpdwn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-20T06:50:16.000Z","updated_at":"2025-07-20T11:41:15.000Z","dependencies_parsed_at":"2025-07-20T12:16:00.711Z","dependency_job_id":"770534cd-608d-41bc-acc2-5c9d52e255a7","html_url":"https://github.com/tmpstpdwn/CHIP-8","commit_stats":null,"previous_names":["tmpstpdwn/chip-8"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/tmpstpdwn/CHIP-8","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmpstpdwn%2FCHIP-8","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmpstpdwn%2FCHIP-8/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmpstpdwn%2FCHIP-8/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmpstpdwn%2FCHIP-8/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tmpstpdwn","download_url":"https://codeload.github.com/tmpstpdwn/CHIP-8/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmpstpdwn%2FCHIP-8/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272469405,"owners_count":24939879,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-28T02:00:10.768Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","c-programming","chip8","chip8-emulator","emulator","low-level-programming"],"created_at":"2025-08-28T08:26:45.635Z","updated_at":"2025-08-28T08:26:49.369Z","avatar_url":"https://github.com/tmpstpdwn.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CHIP-8 Emulator\r\n\r\nA simple, functional CHIP-8 emulator written by me as a learning project. It supports most CHIP-8 programs.\r\n\r\n\u003e ⚠️ **Note**:\r\n\u003e - This is strictly a standard CHIP-8 implementation.\r\n\u003e - This implementation does not support audio output.\r\n\r\n---\r\n\r\n## Screenshots\r\n\r\n### Space Invaders\r\n![Space Invaders](screenshots/space_invaders.png)\r\n\r\n### Lunar Lander\r\n![Lunar Lander](screenshots/lunar_lander.png)\r\n\r\n### Tic Tac Toe\r\n![Tic Tac Toe](screenshots/tic-tac-toe.png)\r\n\r\n---\r\n\r\n## Dependencies\r\n\r\nThis emulator uses [raylib](https://www.raylib.com/) for rendering. Make sure it's installed before building the project.\r\n\r\n---\r\n\r\n## How to Run\r\n\r\n1. Clone the repository and build:\r\n\r\n    ```bash\r\n    git clone https://github.com/tmpstpdwn/CHIP-8\r\n    cd CHIP-8\r\n    make\r\n    ```\r\n\r\n2. Run the emulator with a ROM:\r\n\r\n    ```bash\r\n    ./chip8 path/to/rom.ch8\r\n    ```\r\n\r\n3. Keyboard controls:\r\n\r\n    CHIP-8 uses a 4×4 hexadecimal keypad:\r\n\r\n    ```\r\n    1 2 3 C\r\n    4 5 6 D\r\n    7 8 9 E\r\n    A 0 B F\r\n    ```\r\n\r\n    Mapped to your keyboard as:\r\n\r\n    ```\r\n    1 2 3 4\r\n    Q W E R\r\n    A S D F\r\n    Z X C V\r\n    ```\r\n\r\n---\r\n\r\n## ROMs\r\n\r\nYou can find public domain CHIP-8 ROMs [here](https://github.com/dmatlack/chip8/tree/master/roms).\r\n\r\n---\r\n\r\n## Resources used\r\n\r\n- [Building a CHIP-8 Emulator [C++]](https://austinmorlan.com/posts/chip8_emulator/) by [Austin Morlan](https://austinmorlan.com/).\r\n- [Chip-8 test suite](https://github.com/Timendus/chip8-test-suite/tree/main).\r\n- [Chip-8 opcode table](https://chip8.gulrak.net/).\r\n\r\n## License\r\n\r\nMIT License — free to use, modify, and distribute.\r\n\r\n---\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmpstpdwn%2Fchip-8","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftmpstpdwn%2Fchip-8","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmpstpdwn%2Fchip-8/lists"}