xed-sys 0.6.0+xed-2024.05.20

Rust FFI bindings for Intel XED.
Documentation
1
2
3
4
5
6
7
8
9
use xed_sys::*;

#[test]
fn functions_exist() {
    unsafe {
        // Just ensuring that this compiles
        let _ = xed_isa_set_is_valid_for_chip(XED_ISA_SET_AES, XED_CHIP_AMD_ZEN);
    }
}