1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 21:29:03 +00:00

Moved the jmpvec module from common to runtime

git-svn-id: svn://svn.cc65.org/cc65/trunk@457 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-11-20 21:59:43 +00:00
parent 518220f9cf
commit ce76aba929
3 changed files with 2 additions and 16 deletions

View File

@ -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)

View File

@ -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

View File

@ -66,6 +66,7 @@ OBJS = add.o \
incsp6.o \
incsp7.o \
incsp8.o \
jmpvec.o \
ladd.o \
laddeq.o \
laddeqsp.o \