From: uz Date: Mon, 31 Aug 2009 12:10:59 +0000 (+0000) Subject: Renamed leasp.s to leaasp.s X-Git-Tag: V2.13.0rc1~166 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a1dd468291740051a7bfe6606b7f8caa9f4d88a9;p=cc65 Renamed leasp.s to leaasp.s git-svn-id: svn://svn.cc65.org/cc65/trunk@4090 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/runtime/Makefile b/libsrc/runtime/Makefile index 10a5f0e8d..134928393 100644 --- a/libsrc/runtime/Makefile +++ b/libsrc/runtime/Makefile @@ -117,7 +117,7 @@ OBJS = add.o \ ldec.o \ ldiv.o \ le.o \ - leasp.o \ + leaasp.o \ leave.o \ leq.o \ lge.o \ diff --git a/libsrc/runtime/leaasp.s b/libsrc/runtime/leaasp.s new file mode 100644 index 000000000..5dcdc9d14 --- /dev/null +++ b/libsrc/runtime/leaasp.s @@ -0,0 +1,20 @@ +; +; Ullrich von Bassewitz, 21.08.1998 +; +; CC65 runtime: Load effective address with offset in A relative to SP +; + + .export leaasp + .importzp sp + +.proc leaasp + + ldx sp+1 ; Get high byte + clc + adc sp + bcc @L9 + inx +@L9: rts + +.endproc + diff --git a/libsrc/runtime/leasp.s b/libsrc/runtime/leasp.s deleted file mode 100644 index 5dcdc9d14..000000000 --- a/libsrc/runtime/leasp.s +++ /dev/null @@ -1,20 +0,0 @@ -; -; Ullrich von Bassewitz, 21.08.1998 -; -; CC65 runtime: Load effective address with offset in A relative to SP -; - - .export leaasp - .importzp sp - -.proc leaasp - - ldx sp+1 ; Get high byte - clc - adc sp - bcc @L9 - inx -@L9: rts - -.endproc -