home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / swag / ansi.swg / 0037_Ansi BIOS Write.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1995-02-28  |  266 b   |  16 lines

  1. {
  2. You can use this routine with or without the CRT unit. All output will
  3. be routed through the BIOS. You must have the ANSI.SYS driver loaded in
  4. your config.sys file.
  5.  
  6. }
  7. procedure awrite(c : byte);
  8.  
  9. begin
  10.  asm
  11. mov ah,2;
  12. mov dl,c;
  13. int $21;
  14.  end;
  15. end;
  16.