home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 110_01 / fixccc.asm < prev    next >
Assembly Source File  |  1984-03-03  |  768b  |  18 lines

  1.  
  2. ;
  3. ; Modified 8-13-81 changed setnm to correct wild card expansion
  4. ;****************************************************************
  5. ;****************************************************************
  6. ;************* Be sure to change addresses in bds.lib ***********
  7. ;*************** if you change ccc.asm   ---CAF *****************
  8. ;****************************************************************
  9. ;****************************************************************
  10. ;modified segment in ccc.asm to allow wild cards to work right
  11. setnm:    push b
  12.     ldax d
  13.     cpi '*'        ;wild card?
  14.     mvi a,'?'    ;if so, pad with ? characters
  15.     jnz setnm2
  16.     inx d    ;bump past nathan so *.c doesn't mean *.*
  17.     jp pad2
  18.