8 lines
195 B
Rust
8 lines
195 B
Rust
|
// Copyright (c) 2015, edef <edef@edef.eu>
|
||
|
// See the LICENSE file included in this distribution.
|
||
|
pub use self::imp::Registers;
|
||
|
|
||
|
#[cfg(target_arch = "x86_64")]
|
||
|
#[path = "x86_64/mod.rs"]
|
||
|
mod imp;
|