Rewrote fprintf in assembler

git-svn-id: svn://svn.cc65.org/cc65/trunk@513 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-12-01 17:25:07 +00:00
parent aa10775c66
commit 13be3ba3ef
4 changed files with 72 additions and 28 deletions

View File

@@ -11,7 +11,7 @@
%.o: %.s
@$(AS) -g -o $@ $(AFLAGS) $<
C_OBJS = fclose.o fgets.o fprintf.o calloc.o _fopen.o\
C_OBJS = fclose.o fgets.o calloc.o _fopen.o\
fputs.o fread.o fwrite.o gets.o realloc.o bsearch.o strxfrm.o\
_hextab.o fdopen.o strtok.o\
_afailed.o fopen.o fgetc.o fputc.o puts.o gets.o perror.o getchar.o\
@@ -35,6 +35,7 @@ S_OBJS = _fdesc.o \
cprintf.o \
errno.o \
fmisc.o \
fprintf.o \
free.o \
getcpu.o \
isalnum.o \