微信公众号 
图码生活

每天发布有五花八门的文章,各种有趣的知识等,期待您的订阅与参与
电脑报 1992-2001 十年文章全集
电脑报 1992-2001 十年文章全集
包含从 1992 年 - 2001 年间,两万余篇期刊文章,查询最少输入两个字符
随便看看
读取中
读取中
标题一个实现A、B软驱读写互换的小程序
栏目外设类维护与维修
作者武汉 赵跃龙 汪振华
发布1996-08-09
  本程序的设计思想是:在调用INT 13h中断之前,通过一段常驻内存程序来截取INT 13h中断,将原A盘的入口参数与B盘的入口参数互换,再调用原INT 13h中断,这样即可实现A、B软驱读/写的互换。
  SWAP程序清单如下:
  A>type swap.c
  #include <stdio,h>
  #include <dos.h
  #include <conio.h>
  #include <stdlib.h>
  void interrupt (*oldint13h)();
  void interrupt newint13h();
  main()
  { oldint13h=getveet(0x13);
  setvect(0x13,newint13h);
  keep(0,(-SS+-SP/16--psp));}
  void interrupt newint13h()
  { if(-DL==0x00) -DL=0x01;
  else
  if(-DL==0x01) -DL=0x00;
  (*oldint13h)();}