mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
Add new prefix flag
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4794 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
644e1abae4
commit
11e53e3c38
@ -65,6 +65,11 @@ namespace X86II {
|
||||
// TB - TwoByte - Set if this instruction has a two byte opcode, which
|
||||
// starts with a 0x0F byte before the real opcode.
|
||||
TB = 1 << 4,
|
||||
|
||||
// OpSize - Set if this instruction requires an operand size prefix (0x66),
|
||||
// which most often indicates that the instruction operates on 16 bit data
|
||||
// instead of 32 bit data.
|
||||
OpSize = 1 << 5,
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user