| 31 | /// location that produced it. `file_id` indexes [`AssembledOutput::file_name`]. |
| 32 | #[derive(Debug, Clone, Copy, PartialEq, Eq)] |
| 33 | pub struct LineEntry { |
| 34 | pub addr: u64, |
| 35 | pub file_id: u32, |
| 36 | pub line: u32, |
| 37 | } |
| 38 | |
| 39 | /// The final output produced by the assembler: byte blobs per section, symbol table, relocations. |
| 40 | #[derive(Debug, Default, Clone)] |
| 41 | pub struct AssembledOutput { |
nothing calls this directly
no outgoing calls
no test coverage detected