实验3 多个段的汇编源程序编写与调试

Posted baijimtc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验3 多个段的汇编源程序编写与调试相关的知识,希望对你有一定的参考价值。

1. 实验任务1
assume cs:code, ds:data
 data segment
 db Nuist
 db 5 dup(2)
 data ends
 code segment
 start:
 mov ax, data
 mov ds, ax
 mov ax, 0b800H
 mov es, ax
 mov cx, 5
 mov si, 0
 mov di, 0f00h
 s:
 mov al, [si] 
 and al, 0dfh 
 mov es:[di], al 
 mov al, [5+si] 
 mov es:[di+1]
 inc si      
 add di, 2   ;di+2
 loop s
 ?
 mov ah, 4ch
 int 21h
 code ends
 end start

 

以上是关于实验3 多个段的汇编源程序编写与调试的主要内容,如果未能解决你的问题,请参考以下文章

实验2 多个逻辑段的汇编源程序编写与调试

实验2 多个逻辑段的汇编源程序编写与调试

实验2 多个逻辑段的汇编源程序编写与调试

[汇编语言]实验五:编写,调试具有多个段的程序

汇编实验五 编写调试具有多个段的程序

实验 5 编写调试具有多个段的程序