blob: 0501cc2116389329c91782ee57a033baf2338da1 [file]
#ifndef NASM_X86CONST_H
#define NASM_X86CONST_H
/*
* Values used for the DFV bits in the CCMPcc and CTESTcc instructions.
*/
enum dfv_mask {
DFV_CF = 1,
DFV_ZF = 2,
DFV_SF = 4,
DFV_OF = 8
};
#endif /* NASM_X86CONST_H */