{"id":15723653,"url":"https://github.com/y-taka-23/rust-chip8","last_synced_at":"2025-07-22T06:04:13.358Z","repository":{"id":94987092,"uuid":"446787594","full_name":"y-taka-23/rust-chip8","owner":"y-taka-23","description":"A CHIP-8 emulator in Rust with iced-powered GUI","archived":false,"fork":false,"pushed_at":"2022-01-12T02:00:40.000Z","size":205,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-13T05:49:25.067Z","etag":null,"topics":["chip8","emulator","game","gui","iced","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/y-taka-23.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}},"created_at":"2022-01-11T11:07:38.000Z","updated_at":"2025-04-18T11:35:44.000Z","dependencies_parsed_at":"2023-06-11T09:45:20.672Z","dependency_job_id":null,"html_url":"https://github.com/y-taka-23/rust-chip8","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/y-taka-23/rust-chip8","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-taka-23%2Frust-chip8","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-taka-23%2Frust-chip8/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-taka-23%2Frust-chip8/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-taka-23%2Frust-chip8/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/y-taka-23","download_url":"https://codeload.github.com/y-taka-23/rust-chip8/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-taka-23%2Frust-chip8/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266437369,"owners_count":23928235,"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-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["chip8","emulator","game","gui","iced","rust"],"created_at":"2024-10-03T22:12:41.048Z","updated_at":"2025-07-22T06:04:13.336Z","avatar_url":"https://github.com/y-taka-23.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"CHIP-8 Emulator in Rust\n========================\n\n[![Continuous integration](https://github.com/y-taka-23/rust-chip8/actions/workflows/ci.yml/badge.svg)](https://github.com/y-taka-23/rust-chip8/actions/workflows/ci.yml)\n\n\u003cimg src=\"images/screenshot.gif\" width=\"30%\"\u003e\n\n\u003cdiv\u003e\n  \u003cimg src=\"images/screenshot_white.png\" width=\"30%\"\u003e\n  \u003cimg src=\"images/screenshot_green.png\" width=\"30%\"\u003e\n  \u003cimg src=\"images/screenshot_amber.png\" width=\"30%\"\u003e\n\u003c/div\u003e\n\n\u003cbr\u003e\n\nA CHIP-8 emulator written in Rust and [iced](https://github.com/iced-rs/iced)-powered GUI.\n\n* All 34 CHIP-8 instructions (SUPER CHIP instructions are not supported)\n* Sound support by sinusoidal wave beep\n* 500 Hz clock speed\n* 3 colors of the good-old-time CRT display\n\n\nHow To Run\n------------------------\n\nROM files are not included in the repository. You can download them from e.g.:\n\n* [Chip-8 Games Pack - Chip-8 ROM - Zophar's Domain](https://www.zophar.net/pdroms/chip8/chip-8-games-pack.html)\n\nRemark that, in the game pack, BLITZ and VBRIX don't work correctly. It's not from the emulator's mulfunction, but from implementation bugs in ROMs.\n\n```console\n$ git clone https://github.com/y-taka-23/rust-chip8.git\n$ cd rust-chip8\n$ cargo run -- path/to/ROM_FILE\n```\n\nKeyboard Mapping\n------------------------\n\nThe CHIP-8 keys in the left are mapped to the corresponding keys of a normal keyboard in the right.\n\n\u003cimg src=\"images/keyboard.png\" width=\"40%\"\u003e\n\nOptions\n------------------------\n\nYou also can pass the options like `cargo run -- path/to/ROM_FILE --clock 250`.\n\n```\nchip8 0.1.0\n\nUSAGE:\n    chip8 [OPTIONS] \u003cFILE\u003e\n\nARGS:\n    \u003cFILE\u003e    File of the CHIP-8 ROM\n\nOPTIONS:\n        --clock \u003cINT\u003e...       Change the clock speed (1-500 Hz) [default: 500]\n        --color \u003cSTRING\u003e...    Select the display color (white/green/amber) [default: white]\n    -h, --help                 Print help information\n    -V, --version              Print version information\n        --verbose              Show the detailed execution trace\n\n```\n\nReference\n------------------------\n\n* [Cowgod's Chip-8 Technical Reference](http://devernay.free.fr/hacks/chip8/C8TECH10.HTM)\n* [Chip-8 Games Pack - Chip-8 ROM - Zophar's Domain](https://www.zophar.net/pdroms/chip8/chip-8-games-pack.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fy-taka-23%2Frust-chip8","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fy-taka-23%2Frust-chip8","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fy-taka-23%2Frust-chip8/lists"}