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 Pulley32;
8 
9 impl PulleyTargetKind for Pulley32 {
pointer_width() -> PointerWidth10     fn pointer_width() -> PointerWidth {
11         PointerWidth::PointerWidth32
12     }
13 }
14