Get the disassembly thus far.
(&self)
| 85 | |
| 86 | /// Get the disassembly thus far. |
| 87 | pub fn disas(&self) -> &str { |
| 88 | &self.disas |
| 89 | } |
| 90 | |
| 91 | fn disas_op(&mut self, mnemonic: &str, operands: &[&dyn Disas]) { |
| 92 | write!(&mut self.temp, "{mnemonic}").unwrap(); |