home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 December / PCWorld_2001-12_cd.bin / Software / Topware / Hackman / _SETUP.1 / ModuleM.dat < prev    next >
Text File  |  1998-09-17  |  22KB  |  383 lines

  1. <MOV>
  2. [1]
  3. "MOV: Move"
  4. ""
  5. "NOTES:"
  6. "------"
  7. "*The moffs8, moffs16, and moffs32 operands specify a simple offset relative to the segment base , where 8, 16, and 32 refer to the size of the data. The address-size attribute of the instruction determines the size of the offset, either 16 or 32 bits."
  8. "** In 32-bit mode, the assembler may insert the 16-bit operand-size prefix with this instruction."
  9. ""
  10. "Copies the second operand (source operand) to the first operand (destination operand). The source operand can be an immediate value, general-purpose register, segment register, or memory location; the destination register can be a general-purpose register, segment register, or memory location. Both operands must be the same size, which can be a byte, a word, or a doubleword."
  11. "The MOV instruction cannot be used to load the CS register. Attempting to do so results in an invalid opcode exception (#UD). To load the CS register, use the far JMP, CALL, or RET instruction."
  12. "If the destination operand is a segment register (DS, ES, FS, GS, or SS), the source operand must be a valid segment selector. In protected mode, moving a segment selector into a segment register automatically causes the segment descriptor information associated with that segment selector to be loaded into the hidden (shadow) part of the segment register. While loading this information, the segment selector and segment descriptor information is validated (see the ôOperationö algorithm). The segment descriptor data is obtained from the GDT or LDT entry for the specified segment selector."
  13. "A null segment selector (values 0000-0003) can be loaded into the DS, ES, FS, and GS registers without causing a protection exception. However, any subsequent attempt to reference a segment whose corresponding segment register is loaded with a null value causes a general protection exception (#GP) and no memory reference occurs."
  14. "Loading the SS register with a MOV instruction inhibits all interrupts until after the execution of the next instruction. This operation allows a stack pointer to be loaded into the ESP register with the next instruction (MOV ESP, stack-pointer value) before an interrupt occurs 1 . The LSS instruction offers a more efficient method of loading the SS and ESP registers."
  15. "When operating in 32-bit mode and moving data between a segment register and a general-purpose register, the Intel Architecture 32-bit processors do not require the use of the 16-bit operand-size prefix (a byte with the value 66H) with this instruction, but most assemblers will insert it if the standard form of the instruction is used (for example, MOV DS, AX). The processor will execute this instruction correctly, but it will usually require an extra clock. With most assemblers, using the instruction form MOV DS, EAX will avoid this unneeded 66H prefix. When the processor executes the instruction with a 32-bit general-purpose register, it assumes that the 16 least-significant bits of the general-purpose register are the destination or source operand. If the register is a destination operand, the resulting value in the two high-order bytes of the register is implementation dependent. For the Pentium Pro processor, the two high-order bytes are filled with zeros; for earlier 32-bit Intel Architecture processors, the two high order bytes are undefined."
  16. ""
  17. "NOTE: In a sequence of instructions that individually delay interrupts past the following instruction, only the first instruction in the sequence is guaranteed to delay the interrupt, but subsequent interrupt-delaying instructions may not delay the interrupt. Thus, in the following instruction sequence:"
  18. ""
  19. "STI"
  20. "MOV SS, EAX"
  21. "MOV ESP, EBP"
  22. ""
  23. "interrupts may be recognized before MOV ESP, EBP executes, because STI also delays interrupts for one instruction."
  24. [2]
  25. "DEST ¼ SRC;"
  26. "Loading a segment register while in protected mode results in special checks and actions, as described in the following listing. These checks are performed on the segment selector and the segment descriptor it points to."
  27. "IF SS is loaded;"
  28. "THEN"
  29. "IF segment selector is null"
  30. "THEN #GP(0);"
  31. "FI;"
  32. "IF segment selector index is outside descriptor table limits"
  33. "OR segment selector's RPL ╣ CPL"
  34. "OR segment is not a writable data segment"
  35. "OR DPL ╣ CPL"
  36. "THEN #GP(selector);"
  37. "FI;"
  38. "IF segment not marked present"
  39. "THEN #SS(selector);"
  40. "ELSE"
  41. "SS ¼ segment selector;"
  42. "SS ¼ segment descriptor;"
  43. "FI;"
  44. "FI;"
  45. "IF DS, ES, FS or GS is loaded with non-null selector;"
  46. "THEN"
  47. "IF segment selector index is outside descriptor table limits"
  48. "OR segment is not a data or readable code segment"
  49. "OR ((segment is a data or nonconforming code segment)"
  50. "AND (both RPL and CPL > DPL))"
  51. "THEN #GP(selector);"
  52. "IF segment not marked present"
  53. "THEN #NP(selector);"
  54. "ELSE"
  55. "SegmentRegister ¼ segment selector;"
  56. "SegmentRegister ¼ segment descriptor;"
  57. "FI;"
  58. "FI;"
  59. "IF DS, ES, FS or GS is loaded with a null selector;"
  60. "THEN"
  61. "SegmentRegister ¼ segment selector;"
  62. "SegmentRegister ¼ segment descriptor;"
  63. "FI;"
  64. [3]
  65. "None."
  66. [4]
  67. "Protected Mode Exceptions"
  68. ""
  69. "#GP(0) If attempt is made to load SS register with null segment selector. If the destination operand is in a nonwritable segment. If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit. If the DS, ES, FS, or GS register contains a null segment selector."
  70. "#GP(selector) If segment selector index is outside descriptor table limits. If the SS register is being loaded and the segment selector's RPL and the segment descriptorÆs DPL are not equal to the CPL. If the SS register is being loaded and the segment pointed to is a nonwritable data segment. If the DS, ES, FS, or GS register is being loaded and the segment pointed to is not a data or readable code segment. If the DS, ES, FS, or GS register is being loaded and the segment pointed to is a data or nonconforming code segment, but both the RPL and the CPL are greater than the DPL."
  71. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  72. "#SS(selector) If the SS register is being loaded and the segment pointed to is marked not present."
  73. "#NP If the DS, ES, FS, or GS register is being loaded and the segment pointed to is marked not present."
  74. "#PF(fault-code) If a page fault occurs."
  75. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  76. "#UD If attempt is made to load the CS register."
  77. ""
  78. "Real-Address Mode Exceptions"
  79. ""
  80. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  81. "#SS If a memory operand effective address is outside the SS segment limit."
  82. "#UD If attempt is made to load the CS register."
  83. ""
  84. "Virtual-8086 Mode Exceptions"
  85. ""
  86. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  87. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  88. "#PF(fault-code) If a page fault occurs."
  89. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  90. "#UD If attempt is made to load the CS register."
  91. [5]
  92. "88 / r MOV r/m8,r8 Move r8 to r/m8"
  93. "89 / r MOV r/m16,r16 Move r16 to r/m16"
  94. "89 / r MOV r/m32,r32 Move r32 to r/m32"
  95. "8A / r MOV r8,r/m8 Move r/m8 to r8"
  96. "8B / r MOV r16,r/m16 Move r/m16 to r16"
  97. "8B / r MOV r32,r/m32 Move r/m32 to r32"
  98. "8C / r MOV r/m16,Sreg** Move segment register to r/m16"
  99. "8E / r MOV Sreg,r/m16** Move r/m16 to segment register"
  100. "A0 MOV AL, moffs8* Move byte at ( seg:offset) to AL"
  101. "A1 MOV AX, moffs16* Move word at ( seg:offset) to AX"
  102. "A1 MOV EAX, moffs32* Move doubleword at ( seg:offset) to EAX"
  103. "A2 MOV moffs8*,AL Move AL to ( seg:offset)"
  104. "A3 MOV moffs16*,AX Move AX to ( seg:offset)"
  105. "A3 MOV moffs32*,EAX Move EAX to ( seg:offset)"
  106. "B0+ rb MOV r8,imm8 Move imm8 to r8"
  107. "B8+ rw MOV r16,imm16 Move imm16 to r16"
  108. "B8+ rd MOV r32,imm32 Move imm32 to r32"
  109. "C6 / 0 MOV r/m8,imm8 Move imm8 to r/m8"
  110. "C7 / 0 MOV r/m16,imm16 Move imm16 to r/m16"
  111. "C7 / 0 MOV r/m32,imm32 Move imm32 to r/m32"
  112. [6]
  113. </MOV>
  114. <MOVD>
  115. [1]
  116. "MOVD: Move 32 Bits"
  117. ""
  118. "Copies doubleword from the source operand (second operand) to the destination operand (first operand). Source and destination operands can be MMX registers, memory locations, or 32-bit general-purpose registers; however, data cannot be transferred from an MMX register to an MMX register, from one memory location to another memory location, or from one general-purpose register to another general-purpose register."
  119. "When the destination operand is an MMX register, the 32-bit source value is written to the low-order 32 bits of the 64-bit MMX register and zero-extended to 64 bits. When the source operand is an MMX register, the low-order 32 bits of the MMX register are written to the 32-bit general-purpose register or 32-bit memory location selected with the destination operand."
  120. [2]
  121. "IF DEST is MMX register"
  122. "THEN"
  123. "DEST ¼ ZeroExtend(SRC);"
  124. "ELSE (* SRC is MMX register *)"
  125. "DEST ¼ LowOrderDoubleword(SRC);"
  126. [3]
  127. "None."
  128. [4]
  129. "Protected Mode Exceptions"
  130. ""
  131. "#GP(0) If the destination operand is in a nonwritable segment. If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  132. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  133. "#UD If EM in CR0 is set."
  134. "#NM If TS in CR0 is set."
  135. "#MF If there is a pending FPU exception."
  136. "#PF(fault-code) If a page fault occurs."
  137. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  138. ""
  139. "Real-Address Mode Exceptions"
  140. ""
  141. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  142. "#UD If EM in CR0 is set."
  143. "#NM If TS in CR0 is set."
  144. "#MF If there is a pending FPU exception."
  145. ""
  146. "Virtual-8086 Mode Exceptions"
  147. ""
  148. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  149. "#UD If EM in CR0 is set."
  150. "#NM If TS in CR0 is set."
  151. "#MF If there is a pending FPU exception."
  152. "#PF(fault-code) If a page fault occurs."
  153. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  154. [5]
  155. "0F 6E /r MOVD mm, r/m32 Move doubleword from r/m32 to mm."
  156. "0F 7E /r MOVD r/m32, mm Move doubleword from mm to r/m32."
  157. [6]
  158. </MOVD>
  159. <MOVQ>
  160. [1]
  161. "MOVQ: Move 64 Bits"
  162. ""
  163. "Copies quadword from the source operand (second operand) to the destination operand (first operand). A source or destination operand can be either an MMX register or a memory location; however, data cannot be transferred from one memory location to another memory location. Data can be transferred from one MMX register to another MMX register."
  164. [2]
  165. "DEST ¼ SRC;"
  166. [3]
  167. "None."
  168. [4]
  169. "Protected Mode Exceptions"
  170. ""
  171. "#GP(0) If the destination operand is in a nonwritable segment. If a memory operand effective address is outside the CS, DS, ES, FS or GS segment limit."
  172. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  173. "#UD If EM in CR0 is set."
  174. "#NM If TS in CR0 is set."
  175. "#MF If there is a pending FPU exception."
  176. "#PF(fault-code) If a page fault occurs."
  177. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  178. ""
  179. "Real-Address Mode Exceptions"
  180. ""
  181. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  182. "#UD If EM in CR0 is set."
  183. "#NM If TS in CR0 is set."
  184. "#MF If there is a pending FPU exception."
  185. ""
  186. "Virtual-8086 Mode Exceptions"
  187. ""
  188. "#GP If any part of the operand lies outside of the effective address space from 0 to FFFFH."
  189. "#UD If EM in CR0 is set."
  190. "#NM If TS in CR0 is set."
  191. "#MF If there is a pending FPU exception."
  192. "#PF(fault-code) If a page fault occurs."
  193. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  194. [5]
  195. "0F 6F /r MOVQ mm, mm/m64 Move quadword from mm/m64 to mm."
  196. "0F 7F /r MOVQ mm/m64, mm Move quadword from mm to mm/m64."
  197. [6]
  198. </MOVQ>
  199. <MOVS>
  200. <MOVSB>
  201. <MOVSD>
  202. <MOVSW>
  203. [1]
  204. "MOVS/MOVSB/MOVSW/MOVSD: Move Data from String to String"
  205. ""
  206. "Moves the byte, word, or doubleword specified with the second operand (source operand) to the location specified with the first operand (destination operand). Both the source and destination operands are located in memory. The address of the source operand is read from the DS:ESI or the DS:SI registers (depending on the address-size attribute of the instruction, 32 or 16, respectively). The address of the destination operand is read from the ES:EDI or the ES:DI registers (again depending on the address-size attribute of the instruction). The DS segment may be overridden with a segment override prefix, but the ES segment cannot be overridden."
  207. "At the assembly-code level, two forms of this instruction are allowed: the ôexplicit-operandsö form and the ôno-operandsö form. The explicit-operands form (specified with the MOVS mnemonic) allows the source and destination operands to be specified explicitly. Here, the source and destination operands should be symbols that indicate the size and location of the source value and the destination, respectively. This explicit-operands form is provided to allow documentation; however, note that the documentation provided by this form can be misleading. That is, the source and destination operand symbols must specify the correct type (size) of the operands (bytes, words, or doublewords), but they do not have to specify the correct location. The locations of the source and destination operands are always specified by the DS:(E)SI and ES:(E)DI registers, which must be loaded correctly before the move string instruction is executed."
  208. "The no-operands form provides ôshort formsö of the byte, word, and doubleword versions of the MOVS instructions. Here also DS:(E)SI and ES:(E)DI are assumed to be the source and destination operands, respectively. The size of the source and destination operands is selected with the mnemonic: MOVSB (byte move), MOVSW (word move), or MOVSD (doubleword move)."
  209. "After the move operation, the (E)SI and (E)DI registers are incremented or decremented automatically according to the setting of the DF flag in the EFLAGS register. (If the DF flag is 0, the (E)SI and (E)DI register are incremented; if the DF flag is 1, the (E)SI and (E)DI registers are decremented.) The registers are incremented or decremented by 1 for byte operations, by 2 for word operations, or by 4 for doubleword operations."
  210. "The MOVS, MOVSB, MOVSW, and MOVSD instructions can be preceded by the REP prefix for block moves of ECX bytes, words, or doublewords."
  211. [2]
  212. "DEST ¼SRC;"
  213. "IF (byte move)"
  214. "THEN IF DF = 0"
  215. "THEN"
  216. "(E)SI ¼ (E)SI + 1;"
  217. "(E)DI ¼ (E)DI + 1;"
  218. "ELSE"
  219. "(E)SI ¼ (E)SI û 1;"
  220. "(E)DI ¼ (E)DI û 1;"
  221. "FI;"
  222. "ELSE IF (word move)"
  223. "THEN IF DF = 0"
  224. "(E)SI ¼ (E)SI + 2;"
  225. "(E)DI ¼ (E)DI + 2;"
  226. "ELSE"
  227. "(E)SI ¼ (E)SI û 2;"
  228. "(E)DI ¼ (E)DI û 2;"
  229. "FI;"
  230. "ELSE (* doubleword move*)"
  231. "THEN IF DF = 0"
  232. "(E)SI ¼ (E)SI + 4;"
  233. "(E)DI ¼ (E)DI + 4;"
  234. "ELSE"
  235. "(E)SI ¼ (E)SI û 4;"
  236. "(E)DI ¼ (E)DI û 4;"
  237. "FI;"
  238. "FI;"
  239. [3]
  240. "None."
  241. [4]
  242. "Protected Mode Exceptions"
  243. ""
  244. "#GP(0) If the destination is located in a nonwritable segment. If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit. If the DS, ES, FS, or GS register contains a null segment selector."
  245. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  246. "#PF(fault-code) If a page fault occurs."
  247. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  248. ""
  249. "Real-Address Mode Exceptions"
  250. ""
  251. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  252. "#SS If a memory operand effective address is outside the SS segment limit."
  253. ""
  254. "Virtual-8086 Mode Exceptions"
  255. ""
  256. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  257. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  258. "#PF(fault-code) If a page fault occurs."
  259. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  260. [5]
  261. "A4 MOVS m8, m8 Move byte at address DS:(E)SI to address ES:(E)DI"
  262. "A5 MOVS m16, m16 Move word at address DS:(E)SI to address ES:(E)DI"
  263. "A5 MOVS m32, m32 Move doubleword at address DS:(E)SI to address ES:(E)DI"
  264. "A4 MOVSB Move byte at address DS:(E)SI to address ES:(E)DI"
  265. "A5 MOVSW Move word at address DS:(E)SI to address ES:(E)DI"
  266. "A5 MOVSD Move doubleword at address DS:(E)SI to address ES:(E)DI"
  267. [6]
  268. </MOVS>
  269. </MOVSB>
  270. </MOVSD>
  271. </MOVSW>
  272. <MOVSX>
  273. [1]
  274. "MOVSX: Move with Sign-Extension"
  275. ""
  276. "Copies the contents of the source operand (register or memory location) to the destination operand (register) and sign extends the value to 16 or 32 bits. The size of the converted value depends on the operand-size attribute."
  277. [2]
  278. "DEST ¼ SignExtend(SRC);"
  279. [3]
  280. "None."
  281. [4]
  282. "Protected Mode Exceptions"
  283. ""
  284. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit. If the DS, ES, FS, or GS register contains a null segment selector."
  285. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  286. "#PF(fault-code) If a page fault occurs."
  287. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  288. ""
  289. "Real-Address Mode Exceptions"
  290. ""
  291. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  292. "#SS If a memory operand effective address is outside the SS segment limit."
  293. ""
  294. "Virtual-8086 Mode Exceptions"
  295. ""
  296. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  297. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  298. "#PF(fault-code) If a page fault occurs."
  299. [5]
  300. "0F BE / r MOVSX r16,r/m8 Move byte to word with sign-extension"
  301. "0F BE / r MOVSX r32,r/m8 Move byte to doubleword, sign-extension"
  302. "0F BF / r MOVSX r32,r/m16 Move word to doubleword, sign-extension"
  303. [6]
  304. </MOVSX>
  305. <MOVZX>
  306. [1]
  307. "MOVZX: Move with Zero-Extend"
  308. ""
  309. "Copies the contents of the source operand (register or memory location) to the destination operand (register) and zero extends the value to 16 or 32 bits. The size of the converted value depends on the operand-size attribute"
  310. [2]
  311. "DEST ¼ ZeroExtend(SRC);"
  312. [3]
  313. "None."
  314. [4]
  315. "Protected Mode Exceptions"
  316. ""
  317. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit. If the DS, ES, FS, or GS register contains a null segment selector."
  318. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  319. "#PF(fault-code) If a page fault occurs."
  320. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  321. ""
  322. "Real-Address Mode Exceptions"
  323. ""
  324. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  325. "#SS If a memory operand effective address is outside the SS segment limit."
  326. ""
  327. "Virtual-8086 Mode Exceptions"
  328. ""
  329. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  330. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  331. "#PF(fault-code) If a page fault occurs."
  332. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  333. [5]
  334. "0F B6 / r MOVZX r16,r/m8 Move byte to word with zero-extension"
  335. "0F B6 / r MOVZX r32,r/m8 Move byte to doubleword, zero-extension"
  336. "0F B7 / r MOVZX r32,r/m16 Move word to doubleword, zero-extension"
  337. [6]
  338. </MOVZX>
  339. <MUL>
  340. [1]
  341. "MUL: Unsigned Multiply"
  342. ""
  343. "Performs an unsigned multiplication of the first operand (destination operand) and the second operand (source operand) and stores the result in the destination operand. The destination operand is an implied operand located in register AL, AX or EAX (depending on the size of the operand); the source operand is located in a general-purpose register or a memory location."
  344. "The result is stored in register AX, register pair DX:AX, or register pair EDX:EAX (depending on the operand size), with the high-order bits of the product contained in register AH, DX, or EDX, respectively. If the high-order bits of the product are 0, the CF and OF flags are cleared; otherwise, the flags are set."
  345. [2]
  346. "IF byte operation"
  347. "THEN"
  348. "AX ¼ AL * SRC"
  349. "ELSE (* word or doubleword operation *)"
  350. "IF OperandSize = 16"
  351. "THEN"
  352. "DX:AX ¼ AX * SRC"
  353. "ELSE (* OperandSize = 32 *)"
  354. "EDX:EAX ¼ EAX * SRC"
  355. "FI;"
  356. "FI;"
  357. [3]
  358. "The OF and CF flags are cleared to 0 if the upper half of the result is 0; otherwise, they are set to 1. The SF, ZF, AF, and PF flags are undefined."
  359. [4]
  360. "Protected Mode Exceptions"
  361. ""
  362. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit. If the DS, ES, FS, or GS register contains a null segment selector."
  363. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  364. "#PF(fault-code) If a page fault occurs."
  365. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made while the current privilege level is 3."
  366. ""
  367. "Real-Address Mode Exceptions"
  368. ""
  369. "#GP If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  370. "#SS If a memory operand effective address is outside the SS segment limit."
  371. ""
  372. "Virtual-8086 Mode Exceptions"
  373. ""
  374. "#GP(0) If a memory operand effective address is outside the CS, DS, ES, FS, or GS segment limit."
  375. "#SS(0) If a memory operand effective address is outside the SS segment limit."
  376. "#PF(fault-code) If a page fault occurs."
  377. "#AC(0) If alignment checking is enabled and an unaligned memory reference is made."
  378. [5]
  379. "F6 /4 MUL r/m8 Unsigned multiply (AX ¼ AL * r/m8)"
  380. "F7 /4 MUL r/m16 Unsigned multiply (DX:AX ¼ AX * r/m16)"
  381. "F7 /4 MUL r/m32 Unsigned multiply (EDX:EAX ¼ EAX * r/m32)"
  382. [6]
  383. </MUL>