home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / genie-commodore-file-library / C128CPM / SGTOOL12.ARC / LIBC128.ARC / VDCSETCH.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-10  |  325 b   |  20 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. /* set char def mem addr */
  14.  
  15. void setcharvdc(ushort CharMem)
  16. {
  17.   outvdc(vdcChSetStAddr,
  18.   (invdc(vdcChSetStAddr) & 0x10) | ((uchar) (CharMem >> 8) & 0xE0));
  19. }
  20.