Outils pour utilisateurs

Outils du site


back2root:ibm-pc-ms-dos:instr:add

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
back2root:ibm-pc-ms-dos:instr:add [2023/02/24 14:16] – supprimée - modification externe (Unknown date) 127.0.0.1back2root:ibm-pc-ms-dos:instr:add [2023/03/03 23:53] (Version actuelle) – modification externe 127.0.0.1
Ligne 1: Ligne 1:
 +====== ADD ======
 +
 +===== ADD - Arithmetic Addition =====
 +
 +Adds "src" to "dest" and replacing the original contents of "dest". Both operands are binary.
 +
 +**Usage:**
 +<code asm>
 + ADD Dest,Src
 +</code>
 +
 +**Modifies flags:** 
 +
 +<WRAP round box>
 +AF CF OF SF PF ZF
 +
 +<color #ff7f27>286+ only</color>  <color #00a2e8>386+ only</color>
 +</WRAP>
 +{{tablelayout?rowsHeaderSource=Auto}}
 +^              ^  Clocks                       |||^  Size                ^
 +^  Operands    ^  808x    ^  286  ^  386  ^  486  ^  Bytes  ^              ^
 +| reg,reg      |  3        2    |  2    |  1    |  2      |              |
 +| mem,reg      |  16+AE    7    |  7    |  3    |  2-4    | (W88=24+EA)  |
 +| reg,mem      |  9+EA    |  7    |  6    |  2    |  2-4    | (W88=13+EA)  |
 +| reg,immed    |  4        3    |  2    |  1    |  3-4    |              |
 +| mem,immed    |  17+EA    7    |  7    |  3    |  3-6    | (W88=23+EA)  |
 +| accum,immed  |  4        3    |  2    |  1    |  3      |              |
 +
 +{{page>back2root:ibm-pc-ms-dos:instr:see-footer}}