Category : Assembly Language Source Code
Archive   : RHSTDLIB.ZIP
Filename : UPRTBL.ASM
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
Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!
This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.
But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/