HTT_音乐 发表于 2014-6-8 16:54:56

实验 4 [bx]和[loop]的使用

本帖最后由 HTT_音乐 于 2014-6-8 17:24 编辑

1.编程,向内存 0:0200~0:023F 依次传递数据 0~63(3FH)。assume cs:codesg
codesg segment

start:      mov ax, 0020H
      mov ds, ax
      mov al, 0
      mov bx, 0
      mov cx, 64
s:      mov , al
      inc al
      inc bx
      loop s

      mov ax, 4c00H
      int 21H

codesg ends
end start

HTT_音乐 发表于 2014-6-8 17:01:40

本帖最后由 HTT_音乐 于 2014-6-8 17:24 编辑

2.编程,向内存 0:200~0:23F 依次传送数据 0~63(3FH),程序只能使用 9 条指令,9 条指令中包括“mov ax, 4c00H” 和 "int 21 h"。assume cs:codesg
codesg segment

start:      mov ax, 0020H
      mov ds, ax
      mov bx, 0
      mov cx, 64
s:      mov , bl
      inc bx
      loop s

      mov ax, 4c00H
      int 21H

codesg ends
end start

啊哈 发表于 2014-6-8 23:26:08

.◢████◣
█ >_ < █
╰—┰—╯
 ┕█┙
 ∏
页: [1]
查看完整版本: 实验 4 [bx]和[loop]的使用