home *** CD-ROM | disk | FTP | other *** search
- /*
- SG C Tools 1.6
-
- (C) 1993 Steve Goldsmith
- All Rights Reserved
-
- Compiled with HI-TECH C 3.09 (CP/M-80).
- */
-
- #include <hitech.h>
- #include <vdc.h>
-
- extern ushort vdcScrSize;
-
- /* copies disp and attr page to new pages */
-
- void copydspvdc(ushort SDPage, ushort SAPage, ushort DDPage, ushort DAPage)
- {
- copymemvdc(SDPage,DDPage,vdcScrSize);
- copymemvdc(SAPage,DAPage,vdcScrSize);
- }
-