home *** CD-ROM | disk | FTP | other *** search
- PROCEDURE BinMove;
- EXTERNAL 'THEPAS.BIN';
- (* BinMove loads a screen created with TheDraw
- and saved using the <B>inary option.
-
- SYNTAX: DummyPtr := Ptr(Cseg,Ofs(BinMove));
- Move(DummyPtr^,ColorScreen,4000); *)
- TYPE
- ScreenType = Array[0..3999] of Byte;
- VAR
- ColorScreen : ScreenType Absolute $B800:0000;
- { MonoScreen : ScreenType Absolute $B000:0000; }
- DummyPtr : ^ScreenType;
-