汇编指令 操作含义 高级语言等价表达 mov ax, 18 将18送入ax ax = 18 mov ax, bx 将bx中的数据送入ax ax = bx add ax, 8 将ax中的数值加上8 ax += 8 add ax, bx 将ax,bx的内容相加,结果存入ax ax += bx