Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Harry-Chen/rust-mips
Rust library for low-level abstraction of MIPS processors
https://github.com/Harry-Chen/rust-mips
Last synced: 9 days ago
JSON representation
Rust library for low-level abstraction of MIPS processors
- Host: GitHub
- URL: https://github.com/Harry-Chen/rust-mips
- Owner: Harry-Chen
- License: mit
- Created: 2019-03-21T00:56:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-06T17:58:48.000Z (over 4 years ago)
- Last Synced: 2024-10-07T11:48:04.909Z (28 days ago)
- Language: Rust
- Size: 51.8 KB
- Stars: 30
- Watchers: 7
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- rust-embedded - `mips` - level access to MIPS32 processors - [![crates.io](https://img.shields.io/crates/v/mips.svg)](https://crates.io/crates/mips) (Architecture support crates / MIPS)
- awesome-embedded-rust - `mips` - level access to MIPS32 processors - [![crates.io](https://img.shields.io/crates/v/mips.svg)](https://crates.io/crates/mips) (Architecture support crates / MIPS)
README
# rust-mips
[![Build status](https://travis-ci.org/Harry-Chen/rust-mips.svg?branch=master)](https://travis-ci.org/Harry-Chen/rust-mips)
[![Crate version](https://img.shields.io/crates/v/mips.svg)](https://crates.io/crates/mips)Rust library for low-level abstraction of MIPS32 processors
## License
This project is licensed under the terms of the MIT license.
## Build
First install `rustup`, then execute:
```bash
rustup component add rust-src
cargo install cargo-xbuild
make # for debug version
make mode=release # for release version
```Use `make clean` to remove all build outputs, `make dist-clean` to also remove cached cargos.
## Documentation
See [doc.rs/mips](https://docs.rs/mips) for documentation, or run `cargo doc` to generate it locally.