1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-25 22:29:35 +00:00

Add features to docs

This commit is contained in:
Matthias Endler 2018-10-26 00:06:05 +02:00
parent 02df2b74cb
commit 46badf1a08

View File

@ -3,10 +3,13 @@
[![Build Status](https://travis-ci.org/mre/mos6502.svg?branch=master)](https://travis-ci.org/mre/mos6502)
An emulator for the MOS 6502 CPU written in Rust.
This started off as a fork of [6502-rs](https://github.com/amw-zero/6502-rs),
which seems to be unmaintained at this point.
It builds with the latest stable Rust.
## Features
* Builds on stable Rust.
* Runs on `#[no_std]`, which means it works without the standard library. It is
portable, has very few dependencies, and doesn't depend on a full-fledged
`libc`.
## Usage example
@ -117,3 +120,8 @@ fn main() {
println!("{:?}", cpu);
}
```
## Credits
This started off as a fork of [6502-rs](https://github.com/amw-zero/6502-rs),
which seems to be unmaintained at this point.