Przeglądaj źródła

Fixed mnemonics initialisation

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@7565 8c9fc860-2736-0410-a75d-ab315db34111
eth.negelef 7 lat temu
rodzic
commit
528f08e3a0
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      source/FoxAMD64InstructionSet.Mod

+ 2 - 1
source/FoxAMD64InstructionSet.Mod

@@ -32,7 +32,7 @@ CONST
 	maxNumberOperands*=5; (* maximal two source and one destination operand *)
 
 	(* numbers generated by the instruction set parser *)
-	maxNumberMnemonics = 1008;
+	maxNumberMnemonics = 1012;
 	maxNumberInstructions = 3380;
 	maxMnemonicNameLength =20;
 	maxCodeLength* =12;
@@ -2700,6 +2700,7 @@ VAR
 		AddMnemonic(opVMOVAPD, "VMOVAPD");
 		AddMnemonic(opVMOVAPS, "VMOVAPS");
 		AddMnemonic(opVMOVD, "VMOVD");
+		AddMnemonic(opVMOVDDUP, "VMOVDDUP");
 		AddMnemonic(opVMOVDQA, "VMOVDQA");
 		AddMnemonic(opVMOVDQU, "VMOVDQU");
 		AddMnemonic(opVMOVHLPS, "VMOVHLPS");