citra-scripting

Crates.iocitra-scripting
lib.rscitra-scripting
version0.1.1
sourcesrc
created_at2018-09-13 03:16:48.179902
updated_at2018-09-13 03:18:42.64233
descriptionA Rust interface to Citra's scripting interface.
homepage
repositoryhttps://github.com/j-selby/citra-scripting
max_upload_size
id84463
size12,738
James (j-selby)

documentation

README

Citra Scripting for Rust

A basic interface to Citra's scripting interface.

Requires ZMQ 4.2.0+ to be installed.

Examples

Reading a section of memory:

let connection = CitraConnection::connect().expect("Got error while connecting");

let memory = connection
    .read_memory(0x100000, 4)
    .expect("Failed to read memory");

assert_eq!(memory.len(), 4);

License

Available under the MIT license.

Commit count: 0

cargo fmt