1use crate::cdsl::settings::SettingGroup; 2 3pub(crate) struct TargetIsa { 4 pub name: &'static str, 5 pub settings: SettingGroup, 6} 7 8impl TargetIsa { 9 pub fn new(name: &'static str, settings: SettingGroup) -> Self { 10 Self { name, settings } 11 } 12} 13 14