stdlib segment para public 'slcode' assume cs:stdlib ; ; ; public $uprtbl ; ; Output all chars up to the upper case letters here. ; $uprtbl equ this byte i = 0 rept 'a' db i i = i + 1 endm ; ; Output uc for lc here ; i = 'A' rept 26 db i i = i+1 endm ; ; Output all other characters here. ; i = 'z'+1 rept 255-'z' db i i = i+1 endm ; stdlib ends end