]> git.sur5r.net Git - cc65/blob - libsrc/common/isupper.s
bb5ad07a2873f4e88f8ca588369059a5298cba69
[cc65] / libsrc / common / isupper.s
1 ;
2 ; Ullrich von Bassewitz, 02.06.1998
3 ;
4 ; int isupper (int c);
5 ;
6
7         .export         _isupper
8         .import         __ctype
9
10 _isupper:
11         tay
12         lda     __ctype,y       ; Get character classification
13         and     #$02            ; Mask upper char bit
14         rts
15