1
2
3
4
5
6
7
use crate::prelude::*;

impl Call<Reg64> for Asm {
    fn call(&mut self, op1: Reg64) {
        self.encode_r(0xff, 0x2, op1);
    }
}