home *** CD-ROM | disk | FTP | other *** search
- ;******************************************************************************
- ; Filename: TOUPPER.ASM
- ; Author: Peter Andersson
- ; Version: 0.0
- ; Created: 1995.03.12
- ; Updated:
- ;******************************************************************************
- ; Copyright Peter Andersson, 1994-1995.
- ; All rights reserved.
- ;******************************************************************************
- ; Function: int @toupper(char chr)
- ; Comment: Converts a character to uppercase.
- ; Input: Al - character
- ; Returns: str
- ;******************************************************************************
-
- Include STDDEF.INC
-
- Extrn UpperCaseTable :Byte
-
- Codeseg
-
- Proc toupper ,1
- Movzx Eax,Al
- Movzx Eax,[UpperCaseTable+Eax]
- Ret
- Endp
-
-
-
- End