(&mut self, cpu: &mut Cpu, ctx: u64, target: u64)
| 271 | } |
| 272 | |
| 273 | fn lift_block(&mut self, cpu: &mut Cpu, ctx: u64, target: u64) -> Result<BlockGroup, Error> { |
| 274 | self.lifter.set_context(ctx); |
| 275 | Ok(self.lifter.lift_block(&mut lifter::Context::new(cpu, &mut self.code, target))?) |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | #[derive(Default, Clone)] |