1 pub use super::pulley_shared::isa_builder; 2 3 use super::pulley_shared::PulleyTargetKind; 4 use crate::isa::pulley_shared::PointerWidth; 5 6 #[derive(Debug, Default, Clone, Copy)] 7 pub(crate) struct Pulley64; 8 9 impl PulleyTargetKind for Pulley64 { pointer_width() -> PointerWidth10 fn pointer_width() -> PointerWidth { 11 PointerWidth::PointerWidth64 12 } 13 } 14