home *** CD-ROM | disk | FTP | other *** search
- { define CRT}
- unit tpinit;
- interface
- uses
- {$ifdef CRTUNIT}
- CRT,
- {$endif}
- DOS;
-
- procedure tpinit_0;
- procedure saveBP_0;
- procedure restoreBP_0;
-
- implementation
-
- var
- BP : word;
-
- procedure tpinit_0;
- begin
- setintVec($00,SaveInt00);
-
- setintVec($02,SaveInt02);
- {$ifdef CRTUNIT}
- setintVec($1B,SaveInt1B);
- {$endif}
- setintVec($23,SaveInt23);
- setintVec($24,SaveInt24);
- setintVec($75,SaveInt75);
- end;
-
- procedure SaveBP_0;
- begin
- inline( $58/$50/$BF/BP/$89/$05 );
- end;
-
- procedure RestoreBP_0;
- begin
- inline( $58/$BF/BP/$8B/$05/$50 );
- end;
-
- end.
-
-