微信公众号 
图码生活

每天发布有五花八门的文章,各种有趣的知识等,期待您的订阅与参与
电脑报 1992-2001 十年文章全集
电脑报 1992-2001 十年文章全集
包含从 1992 年 - 2001 年间,两万余篇期刊文章,查询最少输入两个字符
随便看看
读取中
读取中
标题打印机检测程序
栏目软件操作与技巧
作者重庆 莫负民
发布1992-09-18
  Program Chykprint;
  Function PR:Boolean;
  Type RS=Record
  AX,BX,CD,DX,BP,DI,DS,ES,FIAGS:Integer;
  End;
  Var Regs:RS;
  Begin
  PR:=False;FillChar (Regs,SizeOF (Regs),00);
  With Regs Do begin AX:=$0200;DX:=0;end;
  Intr ($17,Regs);
  if (Regs.AX and $4000)=0 then begin
  if (Regs.AX and $4000)<>0 then PR:=True;
  if (Regs.AX and $4000)=0 then PR:=False;
  end End;{of Function PR}
  Begin
  Hires;HiresCoilor(3);
  If (Not PR) Then begin
  Write(^G^G,^M^J,`请开打印机!');
  Repeat Until PR
  end
  End