标题:帮忙解释下这段代码:
只看楼主
wangs11b
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2008-5-20
 问题点数:0 回复次数:1 
帮忙解释下这段代码:
#include <stdio.h>
#include <dos.h>
#include <dir.h>


int function[255];  /* DOS services*/

void interrupt far (*original_handler)();


void interrupt far handler(void)
 {
   char i;

   asm { mov i, ah }

   function[i]++;

   _chain_intr(original_handler);
 }


void main(void)
 {
   int i;

   // Zero the function counts
   for (i = 0; i < 255; i++)
     function[i] = 0;

   original_handler = _dos_getvect(0x21);
   _disable();
   _dos_setvect(0x21, handler);
   _enable();

   printf("This is a message\n");
   fprintf(stdout, "This is a second message\n");

   printf("Current disk is %c\n", getdisk() + 'A');

   _disable();
   _dos_setvect(0x21, original_handler);
   _enable();


   for (i = 0; i <= 255; i++)
     if (function[i])
       printf("Function %x called %d times\n", i, function[i]);
 }
搜索更多相关主题的帖子: handler void function dos original 
2008-08-17 10:14
flyue
Rank: 10Rank: 10Rank: 10
来 自:江南西道
等 级:贵宾
威 望:19
帖 子:3465
专家分:1563
注 册:2006-6-20
得分:0 
你哪个地方不懂?

天之道,损有余而补不足.人之道则不然,损不足以奉有余.孰能有余以奉天下,唯有道者.
2008-08-17 10:16



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-228661-1-1.html




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

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