diff options
author | H. Peter Anvin <hpa@zytor.com> | 2012-02-25 22:33:46 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2012-02-25 22:33:46 -0800 |
commit | 574784d177320e44878266a0858bddfd548b6c87 (patch) | |
tree | 0ca0b1d384ff02ed3bffbc912aee964b568fa347 /insns.pl | |
parent | e9d46c48e4a5db7fe3370337d67e64607f95eed4 (diff) | |
download | nasm-574784d177320e44878266a0858bddfd548b6c87.tar.gz nasm-574784d177320e44878266a0858bddfd548b6c87.tar.bz2 nasm-574784d177320e44878266a0858bddfd548b6c87.zip |
HLE: Move byte codes back to \271-\273
Since we are back to three bytecodes, move them back to the \271-\273
slot to free up the \264 complete quad.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'insns.pl')
-rwxr-xr-x | insns.pl | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -726,9 +726,9 @@ sub byte_code_compile($$) { 'jcc8' => 0370, # Match only if Jcc possible with single byte 'jmp8' => 0371, # Match only if JMP possible with single byte 'jlen' => 0373, # Length of jump - 'hlexr' => 0265, - 'hlenl' => 0266, - 'hle' => 0267, + 'hlexr' => 0271, + 'hlenl' => 0272, + 'hle' => 0273, # This instruction takes XMM VSIB 'vsibx' => 0374, 'vm32x' => 0374, |