Outils pour utilisateurs

Outils du site


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

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:bswap [2023/02/24 14:16] – supprimée - modification externe (Unknown date) 127.0.0.1back2root:ibm-pc-ms-dos:instr:bswap [2023/03/03 23:53] (Version actuelle) – modification externe 127.0.0.1
Ligne 1: Ligne 1:
 +====== BSWAP - (486+ only) ======
 +
 +===== BSWAP - Byte Swap (486+ only) =====
 +
 +Changes the byte order of a 32 bit register from big endian to little endian or vice versa. Result left in destination register is undefined if the operand is a 16 bit register.
 +
 +**Usage:**
 +<code asm>
 + BSWAP reg32 ;
 +</code>
 +
 +**Modifies flags:** 
 +
 +<WRAP round box>
 +none
 +
 +<color #ff7f27>286+ only</color>  <color #00a2e8>386+ only</color>
 +</WRAP>
 +
 +^              ^  Clocks                       |||^  Size                ^
 +^  Operands    ^  808x    ^  286  ^  386  ^  486  ^  Bytes  ^              ^
 +| reg32      |  -        -    |  -    1    |  2      |              |
 +
 +{{page>back2root:ibm-pc-ms-dos:instr:see-footer}}