home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / utils / asmutl / asmlib.lbr / CAPS.AZM / CAPS.ASM
Encoding:
Assembly Source File  |  1991-06-25  |  512 b   |  23 lines

  1. ;----------------------------------------------------------------
  2. ;        This is a module in the ASMLIB library.
  3. ;
  4. ;         Capitalize the accumulator.
  5. ;
  6. ;            Written         R.C.H.     16/8/83
  7. ;            Last Update    R.C.H.       16/8/83
  8. ;----------------------------------------------------------------
  9. ;
  10.     name    'caps'
  11. ;
  12.     public    caps
  13. ;
  14. caps:
  15.     cpi    'a'
  16.     rc
  17.     cpi    'z' + 1
  18.     rnc
  19.     ani    05fh
  20.     ret
  21.     end
  22.  
  23.