Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zargony/rusty64
Emulator platform for 8-bit computers in Rust
https://github.com/zargony/rusty64
c64 emulator rust
Last synced: about 1 month ago
JSON representation
Emulator platform for 8-bit computers in Rust
- Host: GitHub
- URL: https://github.com/zargony/rusty64
- Owner: zargony
- License: mit
- Created: 2014-02-27T13:34:15.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2023-09-06T16:53:08.000Z (over 1 year ago)
- Last Synced: 2023-09-06T18:57:04.262Z (over 1 year ago)
- Topics: c64, emulator, rust
- Language: Rust
- Homepage:
- Size: 259 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Rusty64 - Emulator platform for 8-bit computers
[![Build Status](https://github.com/zargony/rusty64/workflows/CI/badge.svg)](https://github.com/zargony/rusty64/actions)
Rusty64 is an attempt to create an emulator platform for 8-bit computers in [Rust](http://www.rust-lang.org). It aims to emulate a [C-64](http://en.wikipedia.org/wiki/Commodore_64) initially and maybe other computers some day.
The emulator consists of independent modules that emulate hardware pieces like generic RAM or a 6502 CPU. It's an interpreting emulation (no code translation at run time) and aims to be cycle-accurate. Hardware emulating modules are connected together, loaded with firmware and become an emulator for e.g. the C-64.
I'm aiming to find a good balance between a nice hardware abstraction, idiomatic Rust programming, a correct emulation and a good emulation speed.
This a fun project I started a while ago to practice Rust development. It's far from being usable in any way. I'm planning to push it forward from time to time in my free time. But don't expect frequent updates, but feel free to submit comments, ideas or improvements :)