| Crates.io | citra-scripting |
| lib.rs | citra-scripting |
| version | 0.1.1 |
| created_at | 2018-09-13 03:16:48.179902+00 |
| updated_at | 2018-09-13 03:18:42.64233+00 |
| 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.