gz / rust-x86

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

Add explicit `use` statements core::arch::asm. #118

Closed dancrossnyc closed 2 years ago

dancrossnyc commented 2 years ago

The new asm!() syntx has been stabilized in nightly Rust, but requires either a use statement or explicit package qualification. This PR adds use statements in the modules that use the new macro. Fixes #117.

Signed-off-by: Dan Cross cross@gajendra.net

gz commented 2 years ago

Thank you I will release a new version shortly!