1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

Fix doubtful syntax which causes warnings with new assembler

git-svn-id: svn://svn.cc65.org/cc65/trunk@2632 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-11-10 10:01:27 +00:00
parent 4698646a64
commit 4b5bf0e3c2

View File

@ -13,16 +13,16 @@
; 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