home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_03 / 9n03039a < prev    next >
Text File  |  1990-12-11  |  590b  |  23 lines

  1.  
  2.  
  3.      exam(stuff)
  4.      char *stuff;
  5.      {
  6.         char i;
  7.  
  8.         for (i=6; i>=0; i--)
  9.         {
  10.            I_O = stuff[i];
  11.      #asm                        /* #asm to indicate start of assembly */
  12.            xref  VARIABLE?       /* note the external reference */
  13.            STAA  VARIABLE?       /* to VARIABLE                 */
  14.      #endasm                     /* #endasm to indicate end of assembly */
  15.         }
  16.         ;                        /* required semi-colon to preceed #asm */
  17.      #asm
  18.         xref  OTHER?
  19.         LDAA  OTHER?
  20.      #endasm
  21.      }
  22.  
  23.