1 个不稳定版本
使用旧的 Rust 2015
0.1.1 | 2018 年 9 月 13 日 |
---|---|
0.1.0 |
|
206 在 #emulation
12KB
205 行
Citra Rust 脚本
Citra 脚本接口的基本接口。
需要安装 ZMQ 4.2.0+。
示例
读取内存的一部分
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);
许可证
在 MIT 许可证 下可用。
lib.rs
:
Rust 的 Citra 脚本接口的基本实现。
基于此处 Python 实现:https://github.com/citra-emu/citra/commit/04dd91be822aa2358e2160370f6082ab81ec4a2b
依赖关系
~775KB
~14K SLoC