home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
PJ_9_6.ZIP
/
ALIB.ZIP
/
TOUPPER.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1991-06-25
|
214 b
|
21 lines
include asm.inc
public toupper
.code
;; toupper
;
; entry AL char
; exit AL upper cased AL
;
toupper proc
cmp al,'a'
jb tou1
cmp al,'z'
ja tou1
xor al,20h
tou1: ret
toupper endp
end