posts - 1, comments - 0, trackbacks - 0, articles - 0
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

2012年3月24日

功能:
输出字符串This is my first asm program!
(供初学者参考,本人也为初学者)
源代码如下:
 1data segment
 2 string db "This is my first asm program!$"
 3data ends
 4code segment
 5main proc far   ;远过程
 6 assume cs:code,ds:data
 7start:     ;把ds,0入栈
 8 push ds
 9 sub ax,ax
10 push ax
11 ;主代码段
12 mov ax,data
13 mov ds,ax
14 mov dx,offset string
15 mov ah,9
16 int 21h
17 ret    ;ret      就是这三要素 
18   
19main endp
20code ends
21 end start
22
(用DOS进行编译,连接,再运行)
 

 

posted @ 2012-03-24 21:43 陈小俊 阅读(205) | 评论 (0)编辑 收藏