home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / asmutil / stdlib.zip / LWRTBL.ASM < prev    next >
Assembly Source File  |  1990-06-01  |  417b  |  35 lines

  1. stdlib        segment    para public 'slcode'
  2.         assume    cs:stdlib
  3. ;
  4. ;
  5. ;
  6.         public    $lwrtbl
  7. ;
  8. ; Output all chars up to the upper case letters here.
  9. ;
  10. $lwrtbl        equ    this byte
  11. i        =    0
  12.         rept    'A'
  13.         db    i
  14. i        =    i + 1
  15.         endm
  16. ;
  17. ; Output uc for lc here
  18. ;
  19. i        =    'a'
  20.         rept    26
  21.         db    i
  22. i        =    i+1
  23.         endm
  24. ;
  25. ; Output all other characters here.
  26. ;
  27. i        =    'Z'+1
  28.         rept    255-'Z'
  29.         db    i
  30. i        =    i+1
  31.         endm
  32. ;
  33. stdlib        ends
  34.         end
  35.