- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
[计算机]汇编语言答案
Detection points1.1
(1)1 CPU Addressability 8KB , So its address bus width 13 。
(2)1KB Memory 1024 A storage unit. Storage units numbered from 0 to 1023.
(3)1KB Memory can store 1024*8 bit , 1024 Byte 。
(4)1GB 、 1MB 、 1KB Are respectively 2^30 、 2^20 、 2^10 Byte 。 (N^m is the meaning of n m power)
(5)8080、 8088 、 80286 、 80386 Address bus width difference is 16 Root, 20 Root, 24 Root, 32 Root, is their ability to address are: 64(KB) 、 1(MB) 、 16(MB) 、 4(GB) 。
(6)8080、 8088 、 8086 、 80286 、 80386 The data bus width, respectively 8 Root, 8 Root, 16 Root, 16 Root, 32 Roots. Then they can send data to:1 (b), and1 (b), and2 (b), and2 (b), and4 (b) 。
(7)Read from the memory 1024 Bytes of data, 8086 At least read 512 Once, 80386 At least read 256 Times.
(8)Storage, data and programs in binary form
Detection points2.1
(1) Written after each assembly instructions for implementation-related values in registers.
mov ax,62627 AX=F4A3H
mov ah,31H AX=31A3H
mov al,23H AX=3123H
add ax,ax AX=6246H
mov bx,826CH BX=826CH
mov cx,ax CX=6246H
mov ax,bx AX=826CH
add ax,bx AX=04D8H
mov al,bh AX=0482H
mov ah,bl AX=6C82H
add ah,ah AX=D882H
add al,6 AX=D888H
add al,al AX=D810H
mov ax,cx AX=6246H
(2) Only now learned of Assembly instructions, use up to 4 Instructions programming calculation 2 4 Times Square.
Solution:
mov ax,2
add ax,ax
add ax,ax
add ax,ax
Detection points2.2
(1) Given address 0001H Only by changing the offset addressing, CPU The address range for 00010H 1000FH 。
(2) Data is stored in the memory 20000H Unit, the given address SA , Offsets address if you want to find the unit. SA the conditions to be met are: minimum 1001H, Max is 2000H.
Detection points2.3
The following 3 After command execution, CPU Several revisions IP ? When is? Last IP value is how much?
mov ax,bx
sub ax,ax
jmp ax
Solution:
Modify 4 First CPU Read mov ax,bx In the second CPU Read sub ax,ax The third time CPU Read jmp ax The fourth CPU Complete mov ax,bx Or, the final IP Value is in 0 。
Exper
文档评论(0)