{"id":23802913,"url":"https://github.com/binaryfields/resid-rs","last_synced_at":"2025-09-06T15:33:27.914Z","repository":{"id":37811058,"uuid":"79507773","full_name":"binaryfields/resid-rs","owner":"binaryfields","description":"Port of reSID, a MOS6581 SID emulator engine, to Rust","archived":false,"fork":false,"pushed_at":"2023-02-21T22:05:52.000Z","size":226,"stargazers_count":33,"open_issues_count":3,"forks_count":9,"subscribers_count":0,"default_branch":"master","last_synced_at":"2024-12-25T07:54:04.173Z","etag":null,"topics":["c64","emulation","resid","rust","sid"],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/binaryfields.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}},"created_at":"2017-01-20T00:04:38.000Z","updated_at":"2024-07-13T19:55:07.000Z","dependencies_parsed_at":"2022-07-12T16:53:55.865Z","dependency_job_id":null,"html_url":"https://github.com/binaryfields/resid-rs","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binaryfields%2Fresid-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binaryfields%2Fresid-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binaryfields%2Fresid-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binaryfields%2Fresid-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/binaryfields","download_url":"https://codeload.github.com/binaryfields/resid-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232105603,"owners_count":18473331,"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":["c64","emulation","resid","rust","sid"],"created_at":"2025-01-01T22:28:25.077Z","updated_at":"2025-01-01T22:28:25.898Z","avatar_url":"https://github.com/binaryfields.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# resid-rs\n\n[![Build Status](https://travis-ci.org/binaryfields/resid-rs.svg?branch=master)](https://travis-ci.org/binaryfields/resid-rs)\n[![Crates.io](https://img.shields.io/crates/v/resid-rs.svg?maxAge=2592000)](https://crates.io/crates/resid-rs)\n\n### Overview\n\nPort of reSID, a MOS6581 SID emulator engine, to Rust.\n\n### Story\n\nThis project originated from zinc64, a Commodore 64 emulator, around Jan 2017.\nIt evolved to the point where it can be useful to others working on C64 sound/emulation\nso it is packaged and shipped as a standalone crate.\n\n### Usage\n\nOnce SID register read/writes are wired up to resid, all that is left to do\nis to generate audio samples and push them to audio output buffer.\n\n    while delta \u003e 0 {\n        let (samples, next_delta) = self.resid.sample(delta, \u0026mut buffer[..], 1);\n        let mut output = self.sound_buffer.lock().unwrap();\n        for i in 0..samples {\n            output.write(buffer[i]);\n        }\n        delta = next_delta;\n    }\n\n### Components\n\n| Component         | Status      |\n|-------------------|-------------|\n| Envelope          | Done        |\n| ExternalFilter    | Done        |\n| Filter            | Done        |\n| Sampler           | Done        |\n| Spline            | Done        |\n| Wave              | Done        |\n| Sid               | Done        |\n\n### Changelog\n\n- 0.3 - compliance with the original resid\n- 0.4 - full sampler support \n- 0.5 - closed performance gap largely due to resampling \n- 0.6 - SIMD optimization \n- 0.7 - continuous integration and GPLv3 \n- 0.8 - documentation and api refinements/internal cleanup\n- 0.9 - migration to Rust 2018\n- 1.0 - no_std support\n- 1.1 - more idiomatic implementation, removes interior mutability and improves support for async rust\n\n## Credits\n\n- Thanks to Dag Lem for his reSID implementation\n- Thanks to Daniel Collin for motivating me to put this out and helping out with code optimization\n- Commodore folks for building an iconic 8-bit machine\n- Rust developers for providing an incredible language to develop in\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinaryfields%2Fresid-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbinaryfields%2Fresid-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinaryfields%2Fresid-rs/lists"}