- 1、本文档共9页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Asm07第七讲课件
Chapter 3 EXECUTING COMPUTER INSTRUCTIONS;MACHINE LANGUAGE EXAMBLE I:IMMEDIATE DATA
MACHINE SYMBOLIC
INSTRUCTION CODE EXPLANATION
B82301 MOV AX, 0123 Move value 0123H to AX
052500 ADD AX, 0025 Add value 0025H to AX
8BD8 MOV BX, AX Move contents of AX to BX
03D8 ADD BX, AX Add contents of AX to BX
8BCB MOV CX, BX Move contents of BX to CX
2BC8 SUB CX, AX Subtract contents of AX from CX
2BC0 SUB AX, AX Subtract AX from AX (clear AX)
90 NOP No operation (do nothing )
Note :
Machine instructions maybe one, two, or three bytes in length.
The first bytes is the actual operation, and any other bytes that are present are operands—references to an immediate value, a register, or a memory location.
Immediate data: The data defined as part of an instruction is called immediate data.
;Keying in Program Instructions
( Using the E (Enter) command : E address [list] )
( DEMO )
Executing Program Instructions
( Using the R (Register ) , T ( Trace )commands)
register R [register]
trace T [=address] [value]
( DEMO )
Displaying Memory Contents
Figure 3-2
_D CS:100 Enter
( DEMO )
Correcting an Enter
( DEMO )
;MACHINE LANGUAGE EXAMPLE II : DEFINED DATA
Working through this example should give you an insight into how a computer accesses data in memory by means of an address in the DS register and offset addresses.
data storage in memory:
DS OFFSET HEX COTENTS
0200 H 2301 H
0202 H 2500 H
0204 H 0000 H
0206 H 2A2A2A H
INSTRUCTION EXPLANATION
A10002 H Move the word (2 bytes )beginning at DS offset
文档评论(0)