gz / rust-x86

Rust library to use x86 (amd64) specific functionality and registers.
https://docs.rs/x86
MIT License
309 stars 60 forks source link

Is there a reason to use #![feature(core_intrinsics)] ? #126

Closed rukai closed 2 years ago

rukai commented 2 years ago

It seems like the required functionality here has been stabilized under https://doc.rust-lang.org/std/ptr/fn.read_volatile.html and https://doc.rust-lang.org/std/ptr/fn.write_volatile.html This is the only nightly feature remaining that is preventing rust-x86 from going to stable rust.

gz commented 2 years ago

Thanks, this is great!