我是靠谱客的博主 调皮黑裤,最近开发中收集的这篇文章主要介绍[汇编语言]-注释,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

masm5.0编辑器,汇编语言注释

(1) 单行注释用;,注释行之前使用英文状态下的分号;
  mov al,ds:[6]  ;内存ds:[6]的内容送入al中

(2) 批量,多行注释
  comment *
  * comment 成对出现

 1 assume cs:code
 2 code segment
 3     mov ax,0ffffH
 4     mov ds,ax
 5     mov bx,0
 6     
 7     mov dx,0
 8     
 9 comment *
10     mov cx,12
11   s:mov al,[bx]
12     mov ah,0
13     add dx,ax
14     inc bx
15     loop s
16 * comment
17     
18     mov ax,4c00H
19     int 21h
20     
21 code ends
22 end

 

 

 

 

转载于:https://www.cnblogs.com/galoishelley/p/3544041.html

最后

以上就是调皮黑裤为你收集整理的[汇编语言]-注释的全部内容,希望文章能够帮你解决[汇编语言]-注释所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部