aboutsummaryrefslogtreecommitdiff
path: root/src/long_mode/evex.rs
blob: 2c0d765d73ba7326b1010f093d3ef2a58025c97a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// use crate::long_mode::{OperandSpec, DecodeError, RegSpec, RegisterBank, Instruction, Opcode};
use crate::long_mode::{Arch, DecodeError, RegSpec, RegisterBank, Instruction, Opcode};
use crate::long_mode::{read_modrm, read_E_vex, read_imm_unsigned};
use yaxpeax_arch::Reader;

const DEFAULT_EVEX_REGISTER_SIZE: RegisterBank = RegisterBank::Q;
const DEFAULT_EVEX_REGISTER_WIDTH: u8 = 8;

fn isa_has_qwords() -> bool {
    true
}

include!("../shared/generated_evex.in");
include!("../shared/evex.in");