From 1ea503a036c9a86a211797bf6b919abb722b9b2e Mon Sep 17 00:00:00 2001 From: uz Date: Mon, 31 Aug 2009 12:56:54 +0000 Subject: [PATCH] The pleasp.s module is no longer in use. git-svn-id: svn://svn.cc65.org/cc65/trunk@4094 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/runtime/Makefile | 1 - libsrc/runtime/pleasp.s | 23 ----------------------- 2 files changed, 24 deletions(-) delete mode 100644 libsrc/runtime/pleasp.s 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 - - - -- 2.39.5