(&mut self, dst: XReg)
| 1679 | } |
| 1680 | |
| 1681 | fn xone(&mut self, dst: XReg) -> ControlFlow<Done> { |
| 1682 | self.state[dst].set_i64(1); |
| 1683 | ControlFlow::Continue(()) |
| 1684 | } |
| 1685 | |
| 1686 | fn xconst16(&mut self, dst: XReg, imm: i16) -> ControlFlow<Done> { |
| 1687 | self.state[dst].set_i64(i64::from(imm)); |