汇编指令:MOV的作用是往某个寄存器中存入数值。
格式:mov 寄存器名,数值 数值-->寄存器
mov 寄存器A,存器寄B B-->A
PS:必须前后位数匹配,如:
mov ah,bx ;error ah is 8 bit,bx is 16 bit
mov ah, bh ;right ah and bh all is 8 bit
mov cx,dx ;right cx and dx all is 16 bit
------------------------------------------------------------------------
往AX中写入1234H
---------------------------------------------
1234H
AH:高八位 12
AL:低八位 34
----------------------------------------------
本文出自 “_Liang_Happy_Life__Dream” 博客,请务必保留此出处http://liam2199.blog.51cto.com/2879872/1405865
基于8086CPU微处理器的汇编学习之MOV指令,布布扣,bubuko.com
原文地址:http://liam2199.blog.51cto.com/2879872/1405865