ADD.N,  ( at as ar -- )

publication: 12 novembre 2022 / mis à jour 6 janvier 2023

Read this page in english

 

vocabulaire: xtensa

Addition proche.

Mot d'instruction (RRRN).

AR[r] ← AR[s] + AR[t]

Ceci effectue la même opération que l'instruction ADD, dans un codage 16 bits.

Exemple:

\ for macros, see: 
\    https://github.com/MPETREMANN11/ESP32forth/blob/main/assembler/xtensaMacros.txt 
code myADD ( n -- n' ) 
    a1 32           ENTRY,  
    a7      arPOP, 
    a8      arPOP, 
    a7 a8 a9        ADD.N, 
    a9      arPUSH, 
                    RETW.N,  
end-code 
 
 4  7   myADD .  \ display:  11 
-4 -7   myADD .  \ display: -11 

Legal: site web personnel sans commerce / personal site without seling