home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 22
/
AACD 22.iso
/
AACD
/
Programming
/
powerd
/
lib
/
powerd.lha
/
powerd_ppc
/
IsAlpha.ass
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1980-10-26
|
262 b
|
23 lines
# IsAlpha(r3:LONG)(LONG)
.text
.global _IsAlpha
_IsAlpha:
cmpwi r3,"A"
blt .false
cmpwi r3,"Z"
ble .true
cmpwi r3,"a"
blt .false
cmpwi r3,"z"
bgt .false
.true: li r3,-1
blr
.false: li r3,0
blr
.type _IsAlpha,@function
.size _IsAlpha,$-_IsAlpha