📜  汇编添加指令 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:09.629000             🧑  作者: Mango

代码示例1
assembly add instruction

syntax : add {destination} , {operand}

how it works ?
1: adds the value of {operand} to {destination} 
2: stores the result in {destination}

inputs:
destination: can be {memory address or register}
operand: can be {memory address , register or immediate value}