Category : Assembly Language Source Code
Archive   : RHSTDLIB.ZIP
Filename : STRUPR.ASM

 
Output of file : STRUPR.ASM contained in archive : RHSTDLIB.ZIP
stdlib segment para public 'slcode'
assume cs:stdlib
;
extrn $uprtbl:byte, sl_strdup:far
;
; strupr- Converts to upper case all lower case characters in the string
; pointed at by es:di.
;
; strupr2- Same as above except it creates a new string then converts the
; characters in the new string. The original string is unchanged.
;
; inputs:
; es:di- Buffer for destination string.
;
; outputs:
; es:di- Points at converted string (points at new string
; for strupr2).
;
public sl_strupr
;
sl_strupr proc far
push es
push ds
push ax
push bx
pushf
push si
push di
;
mov si, es
mov ds, si
mov si, di
lea bx, $uprtbl
ToUprLp: lodsb
xlat cs:$uprtbl
stosb
cmp al, 0
jne ToUprLp
;
pop di
pop si
popf
pop bx
pop ax
pop ds
pop es
ret
sl_strupr endp
;
;
public sl_strupr2
;
sl_strupr2 proc far
call sl_strdup
jc RetFar
jmp near ptr sl_strupr
RetFar: ret
sl_strupr2 endp
;
stdlib ends
end


  3 Responses to “Category : Assembly Language Source Code
Archive   : RHSTDLIB.ZIP
Filename : STRUPR.ASM

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. 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/