1 use gdbstub::target; 2 3 use crate::emu::Emu; 4 5 impl target::ext::target_description_xml_override::TargetDescriptionXmlOverride for Emu { target_description_xml(&self) -> &str6 fn target_description_xml(&self) -> &str { 7 r#"<target version="1.0"><!-- custom override string --><architecture>armv4t</architecture></target>"# 8 } 9 } 10