Java教程

汇编第一次实验

本文主要是介绍汇编第一次实验,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

2.

查看:

修改后:

 

结论:不能修改,有系统保护

3.

e:

 

f:

 

修改:

 

4.

28
26
24
22
24
26
28
30


30和230

栈:

 

完毕:

 顺序:

 

5.


再次使用t指令时

变为00001020

后变为30401020

栈顶-2后复制操作数

6.

assume cs:code
code segment
start:
	mov cx,10
	mov dl,'0'
s:mov ah,2
   int 21h
   add dl,1
   loop s

   mov ah,4ch
   int 21h
code ends
end start

  

 

 

 

 

 

7.

assume cs:code
code segment
	mov ax,cs
	mov ds,ax
	mov ax,0020h
	mov es,ax
	mov bx,0
	mov cx,001fh
s:	mov al,[bx]
	mov es:[bx],al
	inc bx
	loop s


	mov ax,4c00h
	int 21h
code ends
end

  程序开始地址给ds

  代码长1f故循环1f次

 巩固了之前汇编语言的知识。

 

这篇关于汇编第一次实验的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!