home *** CD-ROM | disk | FTP | other *** search
- Unit JRPRT201 ;
-
- (*╔═════════════════════════════════════════════════════════════════════════╗*)
- (*║ ║*)
- (*║ JR Unit Library - Version 2.01 - June xxrd 1988 ║*)
- (*║ ║*)
- (*║ Printer functions and procedures ║*)
- (*║ ║*)
- (*╚═════════════════════════════════════════════════════════════════════════╝*)
-
- Interface
-
- (*───────────────────────────────────────────────────────────────────────────*)
-
- Uses Dos ;
-
- (*───────────────────────────────────────────────────────────────────────────*)
-
- Const _BIOSPrinterService = $17 ;
-
- (*───────────────────────────────────────────────────────────────────────────*)
-
- Var _regs8086 : Registers ;
-
- (*───────────────────────────────────────────────────────────────────────────*)
-
- Function _PrinterStatus : Byte ;
- Function _PrinterReady : Boolean ;
-
- (*───────────────────────────────────────────────────────────────────────────*)
-
- Implementation
-
- (*───────────────────────────────────────────────────────────────────────────*)
-
-
- Function _PrinterStatus ;
- (* Version 1.01 *)
- Begin ;
- With _regs8086 Do Begin ;
- ah:=2 ; dx:=0 ;
- End ;
- Intr(_BIOSPrinterService,_regs8086) ;
- _PrinterStatus:=_regs8086.ah ;
- End (* Function _PrinterStatus *) ;
-
- (*───────────────────────────────────────────────────────────────────────────*)
-
- Function _PrinterReady ;
- (* Version 1.02 *)
- Begin ;
- _PrinterReady:=(_PrinterStatus=$90) ;
- End (* Function _PrinterReady *) ;
-
- (*───────────────────────────────────────────────────────────────────────────*)
-
- End (* Of Unit JRPRT201 *).
-