Crates.io | citra-scripting |
lib.rs | citra-scripting |
version | 0.1.1 |
source | src |
created_at | 2018-09-13 03:16:48.179902 |
updated_at | 2018-09-13 03:18:42.64233 |
description | A Rust interface to Citra's scripting interface. |
homepage | |
repository | https://github.com/j-selby/citra-scripting |
max_upload_size | |
id | 84463 |
size | 12,738 |
A basic interface to Citra's scripting interface.
Requires ZMQ 4.2.0+ to be installed.
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);
Available under the MIT license.