From: uz Date: Mon, 31 Aug 2009 12:56:54 +0000 (+0000) Subject: The pleasp.s module is no longer in use. X-Git-Tag: V2.13.0rc1~162 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1ea503a036c9a86a211797bf6b919abb722b9b2e;p=cc65 The pleasp.s module is no longer in use. git-svn-id: svn://svn.cc65.org/cc65/trunk@4094 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/runtime/Makefile b/libsrc/runtime/Makefile index b3bfd7876..19cda62da 100644 --- a/libsrc/runtime/Makefile +++ b/libsrc/runtime/Makefile @@ -162,7 +162,6 @@ OBJS = add.o \ ne.o \ neg.o \ or.o \ - pleasp.o \ popa.o \ popsreg.o \ push1.o \ diff --git a/libsrc/runtime/pleasp.s b/libsrc/runtime/pleasp.s deleted file mode 100644 index d1fecaa06..000000000 --- a/libsrc/runtime/pleasp.s +++ /dev/null @@ -1,23 +0,0 @@ -; -; Ullrich von Bassewitz, 21.08.1998 -; -; CC65 runtime: Load effective address with offset in A relative to SP and push it -; - - .export pleaasp - .import pushax - .importzp sp - -.proc pleaasp - - ldx sp+1 ; Get high byte - clc - adc sp - bcc @L9 - inx -@L9: jmp pushax - -.endproc - - -