home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / ddjcomp.lha / urban / shift.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-29  |  147 b   |  10 lines

  1. shift_bits() {
  2.   low=(low<<1)&0xffff;
  3.   high=(high<<1)&0xffff;
  4.   ++high;
  5. #ifdef UN
  6.   apoint=(apoint<<1)&0xffff;
  7.   if(get_bit()) ++apoint;
  8. #endif
  9. }
  10.