home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / S / SGTOOL12.ARC / LIBC128.ARC / VDCCPYDP.C < prev    next >
C/C++ Source or Header  |  1993-08-10  |  401b  |  22 lines

  1. /*
  2. SG C Tools 1.2
  3.  
  4. (C) 1993 Steve Goldsmith
  5. All Rights Reserved
  6.  
  7. Compiled with HI-TECH C 3.09 (CP/M-80).
  8. */
  9.  
  10. #include <hitech.h>
  11. #include <vdc.h>
  12.  
  13. extern ushort vdcScrSize;
  14.  
  15. /* copies disp and attr page to new pages */
  16.  
  17. void copydspvdc(ushort SDPage, ushort SAPage, ushort DDPage, ushort DAPage)
  18. {
  19.   copymemvdc(SDPage,DDPage,vdcScrSize);
  20.   copymemvdc(SAPage,DAPage,vdcScrSize);
  21. }
  22.