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
/
ISLOWER.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1991-08-22
|
261 b
|
22 lines
include asm.inc
public islower
.code
;; islower
;
; entry AL character
; exit Zf if a..z
;
islower proc
cmp al,'z'
ja ilo1 ; if not a..z
cmp al,'a'
jb ilo1 ; if not a..z
cmp al,al ; else set Zf
ilo1: ret
islower endp
end