{"id":15032135,"url":"https://github.com/royaltm/rust-z80emu","last_synced_at":"2025-04-09T21:22:53.483Z","repository":{"id":39861911,"uuid":"221668013","full_name":"royaltm/rust-z80emu","owner":"royaltm","description":"A minimalistic Z80 Cpu emulation library in Rust.","archived":false,"fork":false,"pushed_at":"2024-02-25T19:42:17.000Z","size":437,"stargazers_count":20,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-04-25T19:21:26.958Z","etag":null,"topics":["8-bit","emulator","library","retro","rust","z80"],"latest_commit_sha":null,"homepage":"https://docs.rs/z80emu","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/royaltm.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"COPYING","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":"2019-11-14T10:14:19.000Z","updated_at":"2024-01-08T12:08:16.000Z","dependencies_parsed_at":"2024-02-10T08:19:42.696Z","dependency_job_id":"f716cb90-95b3-463b-87be-68c7f3f10102","html_url":"https://github.com/royaltm/rust-z80emu","commit_stats":{"total_commits":141,"total_committers":1,"mean_commits":141.0,"dds":0.0,"last_synced_commit":"548d356de0d851f85b4ae510134088dec815886f"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royaltm%2Frust-z80emu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royaltm%2Frust-z80emu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royaltm%2Frust-z80emu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royaltm%2Frust-z80emu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/royaltm","download_url":"https://codeload.github.com/royaltm/rust-z80emu/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248112934,"owners_count":21049758,"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","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":["8-bit","emulator","library","retro","rust","z80"],"created_at":"2024-09-24T20:17:25.368Z","updated_at":"2025-04-09T21:22:53.463Z","avatar_url":"https://github.com/royaltm.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"Z80 emu\n=======\n\n[![Crate][Crate img]][Crate Link]\n[![Docs][Docs img]][Docs Link]\n[![Build Status][Build img]][Build Link]\n[![Coverage Status][Coverage img]][Coverage Link]\n[![Minimum rustc version][rustc version img]][rustc version link]\n[![License][License img]][License Link]\n\n`z80emu` is a [Rust](https://www.rust-lang.org) library which provides building blocks for emulators based on\nZilog's [Z80 CPU](https://en.wikipedia.org/wiki/Zilog_Z80).\n\n\n```text\n  _______\n=|       |=\n=|       |=                               \n=|       |= ---------------- =[   Clock   ]\n=|       |=                         |\n=|       |=                         |\n=|       |=                         |\n=|       |=                         |\n=|       |=                         |\n=|  Cpu  |=                    _____|_____\n=|       |=                   |           |\n=|  Z80  |= \\                 |           |\n=|       |= \u003c--------------\u003e =| Memory+Io |=:::::\n=|       |= /                 |           |\n=|       |=                   |___________|\n=|       |=\n=|       |=\n=|       |=\n=|       |=\n=|       |=\n=|_______|=\n```\n\n`z80emu` was developed as an attempt to create a minimalistic emulation library. It provides the necessary tools for the retro emulators to be built upon, avoiding any assumptions about the side effects of those emulators.\n\nPlease see the [documentation][Docs Link] for a full introduction.\n\nThe repository also contains an [example implementation](examples/ral1243) of a complete emulator program.\n\nAnother example built on top of `z80emu` is the [SPECTRUSTY](https://royaltm.github.io/spectrusty) library that focuses on \"ZX Spectrum\" emulators.\n\n\nRust Version Requirements\n-------------------------\n\n`z80emu` requires Rustc version 1.66 or greater.\n\n\nLicensing\n---------\n\nStarting from version `0.6.0`, the `z80emu` library is released under the terms of the GNU Lesser General Public License (LGPL) version 3 or later.\n\nNon-essential programs in this repository, i.e.: tests, examples, and benchmarks, are covered under different terms.\n\nPlease mind that each source file contains a copyright notice indicating the details.\n\n[Crate Link]: https://crates.io/crates/z80emu\n[Crate img]: https://img.shields.io/crates/v/z80emu.svg\n[Docs Link]: https://docs.rs/z80emu\n[Docs img]: https://docs.rs/z80emu/badge.svg\n[Build Link]: https://github.com/royaltm/rust-z80emu/actions/workflows/ci.yml\n[Build img]: https://github.com/royaltm/rust-z80emu/actions/workflows/ci.yml/badge.svg?branch=master\n[rustc version link]: https://github.com/royaltm/rust-z80emu#rust-version-requirements\n[rustc version img]: https://img.shields.io/badge/rustc-1.66+-lightgray.svg\n[License Link]: https://www.gnu.org/licenses/#LGPL\n[License img]: https://img.shields.io/crates/l/z80emu\n[Coverage Link]: https://coveralls.io/github/royaltm/rust-z80emu?branch=master\n[Coverage img]: https://coveralls.io/repos/github/royaltm/rust-z80emu/badge.svg?branch=master\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froyaltm%2Frust-z80emu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froyaltm%2Frust-z80emu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froyaltm%2Frust-z80emu/lists"}