home *** CD-ROM | disk | FTP | other *** search
- /*
- SG C Tools 1.1
-
- (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;
-
- /* sets which disp and attr page is showing */
-
- void setdsppagevdc(ushort DPage, ushort APage)
- {
- outvdc(vdcDspStAddrHi,(uchar) (DPage >> 8));
- outvdc(vdcDspStAddrLo,(uchar) DPage);
- outvdc(vdcAttrStAddrHi,(uchar) (APage >> 8));
- outvdc(vdcAttrStAddrLo,(uchar) APage);
- }
-
- /* 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);
- }
-