diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-09-24 15:55:20 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-09-24 15:55:20 -0700 |
commit | ea1a81b16ec1af30cb08e29d653a4a309b709675 (patch) | |
tree | c97d8cd5f60383e0b4a7d06dfe213ca1ed258bac | |
parent | 2a5156b284ef5b2ca26006df0ad5db73cf3bb456 (diff) | |
download | nasm-ea1a81b16ec1af30cb08e29d653a4a309b709675.tar.gz |
0F0F is a 3Dnow! prefix; remove from prefix list
3Dnow! prefixes cannot be disambiguated via pointer chasing, since
the third byte of the opcode field follows the EA.
-rw-r--r-- | insns.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ # Opcode prefixes which need their own opcode tables # LONGER PREFIXES FIRST! -@disasm_prefixes = qw(0F0F 0F24 0F25 0F38 0F3A 0F7A 0FA6 0FA7 0F); +@disasm_prefixes = qw(0F24 0F25 0F38 0F3A 0F7A 0FA6 0FA7 0F); print STDERR "Reading insns.dat...\n"; |