use gdbstub::target; use gdbstub::target::ext::section_offsets::Offsets; use crate::gdb::Emu; // This implementation is for illustrative purposes only. If the offsets are // guaranteed to be zero, this extension does not need to be implemented. impl target::ext::section_offsets::SectionOffsets for Emu { fn get_section_offsets(&mut self) -> Result, Self::Error> { Ok(Offsets::Sections { text: 0, data: 0, bss: None, }) } }