]> git.sur5r.net Git - cc65/commitdiff
Fix doubtful syntax which causes warnings with new assembler
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 10 Nov 2003 10:01:27 +0000 (10:01 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 10 Nov 2003 10:01:27 +0000 (10:01 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2632 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/atari/ucase_fn.s

index 4f866dda8567b67d4c881ec0aa5db56dcae1eee3..32b048b06ac1b7b7780d1f5c2542a6e177524711 100644 (file)
 ;      tmp3 - amount of bytes used on the stack (needed for cleanup)
 ; Uses:
 ;       ptr4 - scratch pointer used to remember original AX pointer
-; 
+;
 ;
 
        .include        "atari.inc"
-       
+
        .importzp tmp3,ptr4,sp
        .import _strupr,subysp
        .export ucase_fn
 
-ucase_fn:      .proc
+.proc   ucase_fn
 
        ; we make sure that the filename doesn't contain lowercase letters
        ; we copy the filename we got onto the stack, uppercase it and use this
@@ -70,4 +70,4 @@ loop2:        lda     (ptr4),y
        clc                     ; indicate success
        rts
 
-ucase_fn:      .endproc
+.endproc