| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 794 人关注过本帖
标题:[求助]如何在.com模式下 写中断程序??????
只看楼主 加入收藏
windhl
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2006-5-26
收藏
 问题点数:0 回复次数:0 
[求助]如何在.com模式下 写中断程序??????
我写了一个 中断程序 要用 tlink *.obj /t

连接成 .com文件时总是 显示 segment-relocatable items present


源程序 如下 希望高人指点一下阿 ^_^
code segment
org 100h
assume cs:code,ds:code,ss:code,es:code
main proc near

call CLRSCR
lea dx,news
mov ah,09h
int 21h



push ds
mov ax,seg IRQ
mov ds,ax
lea dx,IRQ
mov al,0fh
mov ah,25h
int 21h
pop ds
cli
and al,01111111b
out 21h,al
mov count,5 ;set the counter
sti
loop1:
jmp loop1

main endp
;====================================
IRQ proc near


call CLRSCR
lea dx,new_IRQ
mov ah,09h
int 21h

mov al,20h
out 20h,al

dec count
jnz exit

in al,21h
or al,10000000b
out 21h,al

sti



mov ax,4c00h
int 21h

exit:
iret
IRQ endp
....
...
...

code ends

end main
搜索更多相关主题的帖子: 中断程序 模式 code segment 
2006-05-26 12:31
快速回复:[求助]如何在.com模式下 写中断程序??????
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015932 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved