(&self, sink: &mut impl CodeSink)
| 158 | /// or if the instruction uses 8-bit operands. |
| 159 | #[inline] |
| 160 | pub fn encode(&self, sink: &mut impl CodeSink) { |
| 161 | if self.byte != 0x40 || self.must_emit { |
| 162 | sink.put1(self.byte); |
| 163 | } |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | /// The displacement bytes used after the ModR/M and SIB bytes. |