sikorama / rasm-doc

Latex Documentation for RASM Z80 Assembler
GNU General Public License v3.0
4 stars 1 forks source link

possibilité de découper des registres dans les macros (exemple) #2

Closed EdouardBERGE closed 3 years ago

EdouardBERGE commented 4 years ago

macro add16,acc,ajout

ld a,{acc}.low ; récupère le C de BC, ou le E de DE, ... add {ajout}.low ld {acc}.low,a ld a,{acc}.high adc {ajout}.high ld {acc}.high,a

mend

add16 bc,hl

sikorama commented 4 years ago

macro add16, R1, R2

ld A,{R1}.low ; récupère le C de BC, ou le E de DE, ... add {R2}.low ld {R1}.low,A

ld A,{R1}.high adc {R2}.high ld {R1}.high,A

mend

add16 bc,hl