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 / SGTOOL13.ARC / CIA.ARC / CIAJOY.C next >
C/C++ Source or Header  |  1993-08-28  |  677b  |  34 lines

  1. /*
  2. SG C Tools 1.3
  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 <sys.h>
  11. #include <hitech.h>
  12. #include <cia.h>
  13.  
  14. uchar ciaJoy1;
  15. uchar ciaJoy2;
  16.  
  17. /* read joy sticks.  disable interrupts before calling or cp/m's key scan */
  18. /* routine will affect values */
  19.  
  20. void getjoyscia(void)
  21. {
  22.   register uchar SaveReg;
  23.  
  24.   SaveReg = inp(cia1+ciaDataDirA);
  25.   outp(cia1+ciaDataDirA,0x00);
  26.   ciaJoy2 = inp(cia1+ciaDataA) & ciaNone;
  27.   outp(cia1+ciaDataDirA,SaveReg);
  28.  
  29.   SaveReg = inp(cia1+ciaDataDirB);
  30.   outp(cia1+ciaDataDirB,0x00);
  31.   ciaJoy1 = inp(cia1+ciaDataB) & ciaNone;
  32.   outp(cia1+ciaDataDirB,SaveReg);
  33. }
  34.