From ce76aba9291bc2c8f6c763103af14f900ba216f5 Mon Sep 17 00:00:00 2001 From: cuz Date: Mon, 20 Nov 2000 21:59:43 +0000 Subject: [PATCH] Moved the jmpvec module from common to runtime git-svn-id: svn://svn.cc65.org/cc65/trunk@457 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/common/Makefile | 3 +-- libsrc/common/jmpvec.s | 14 -------------- libsrc/runtime/Makefile | 1 + 3 files changed, 2 insertions(+), 16 deletions(-) delete mode 100644 libsrc/common/jmpvec.s diff --git a/libsrc/common/Makefile b/libsrc/common/Makefile index e90d1a634..dd6c2963b 100644 --- a/libsrc/common/Makefile +++ b/libsrc/common/Makefile @@ -51,7 +51,6 @@ S_OBJS = _fdesc.o \ isupper.o \ isxdigit.o \ itoa.o \ - jmpvec.o \ labs.o \ longjmp.o \ ltoa.o \ @@ -95,4 +94,4 @@ clean: @rm -f $(C_OBJS:.o=.s) @rm -f $(C_OBJS) @rm -f $(S_OBJS) - + diff --git a/libsrc/common/jmpvec.s b/libsrc/common/jmpvec.s deleted file mode 100644 index d9631583e..000000000 --- a/libsrc/common/jmpvec.s +++ /dev/null @@ -1,14 +0,0 @@ -; -; General purpose jump vector in the data segment that is patched at -; runtime and used by several routines. -; -; Ullrich von Bassewitz, 16.12.1998 -; - - .export jmpvec - - -.data - -jmpvec: jmp $FFFF - diff --git a/libsrc/runtime/Makefile b/libsrc/runtime/Makefile index 681ce3431..533f60a2a 100644 --- a/libsrc/runtime/Makefile +++ b/libsrc/runtime/Makefile @@ -66,6 +66,7 @@ OBJS = add.o \ incsp6.o \ incsp7.o \ incsp8.o \ + jmpvec.o \ ladd.o \ laddeq.o \ laddeqsp.o \ -- 2.39.5