summaryrefslogtreecommitdiff
path: root/insns.pl
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-09-24 15:55:20 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-09-24 15:55:20 -0700
commitea1a81b16ec1af30cb08e29d653a4a309b709675 (patch)
treec97d8cd5f60383e0b4a7d06dfe213ca1ed258bac /insns.pl
parent2a5156b284ef5b2ca26006df0ad5db73cf3bb456 (diff)
downloadnasm-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.
Diffstat (limited to 'insns.pl')
-rw-r--r--insns.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/insns.pl b/insns.pl
index 71af258e..90c00c07 100644
--- a/insns.pl
+++ b/insns.pl
@@ -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";