From 617235b446f2b64ca46bdf03294ce41481cc0331 Mon Sep 17 00:00:00 2001 From: borutr Date: Sat, 17 Nov 2007 19:21:59 +0000 Subject: [PATCH] * as/asxxsrc: created as/asxxsrc/assym.c, as/asxxsrc/strcmpi.c: moved as/hc08/assym.c, as/mcs51/assym.c, as/strcmpi.c, as/z80/assym.c, as/hc08/asstore.c, as/mcs51/asstore.c: deleted as/hc08/Makefile.bcc, as/hc08/Makefile.in, as/hc08/as_hc08.dsp, as/hc08/asm.h, as/link/hc08/Makefile.bcc, as/link/hc08/Makefile.in, as/link/hc08/link_hc08.dsp, as/link/mcs51/Makefile.bcc, as/link/mcs51/Makefile.in, as/link/mcs51/aslink.dsp, as/link/z80/Makefile.in, as/link/z80/linkgbz80.dsp, as/link/z80/linkz80.dsp, as/mcs51/Makefile.bcc, as/mcs51/Makefile.in, as/mcs51/asm.h, as/mcs51/asx8051.dsp, as/z80/Makefile.bcc, as/z80/Makefile.in, as/z80/as_gbz80.dsp, as/z80/as_z80.dsp, as/z80/Makefile.as_hc08, as/mcs51/Makefile.asx8051: modified created as/asxxsrc directory, assym.c and strcpi.c moved into it git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4971 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- as/hc08/Makefile.as_hc08 | 5 +---- as/hc08/Makefile.bcc | 2 +- as/hc08/Makefile.in | 2 +- as/hc08/as_hc08.dsp | 4 ---- as/hc08/asm.h | 3 --- as/mcs51/Makefile.asx8051 | 5 +---- as/mcs51/Makefile.bcc | 2 +- as/mcs51/Makefile.in | 2 +- as/mcs51/asm.h | 3 --- as/mcs51/asx8051.dsp | 4 ---- 10 files changed, 6 insertions(+), 26 deletions(-) diff --git a/as/hc08/Makefile.as_hc08 b/as/hc08/Makefile.as_hc08 index 1edad3d5..b2bf0b11 100644 --- a/as/hc08/Makefile.as_hc08 +++ b/as/hc08/Makefile.as_hc08 @@ -5,7 +5,7 @@ INCROOT=. CFLAGS=-ggdb -O2 -I $(INCROOT) TARGETS=$(SDCCDIR)/bin/as_hc08 ALLOBJECTS= asmain.o aslex.o assym.o assubr.o asnoice.o \ - asexpr.o asdata.o aslist.o asout.o asstore.o \ + asexpr.o asdata.o aslist.o asout.o \ h08ext.o h08pst.o h08mch.o h08adr.o strcmpi.o all:: $(TARGETS) @@ -40,9 +40,6 @@ asout.o : asout.c asm.h asnoice.o : asnoice.c asm.h $(CC) $(CFLAGS) $(LDFLAGS) -c -o asnoice.o asnoice.c -asstore.o : asstore.c asm.h - $(CC) $(CFLAGS) $(LDFLAGS) -c -o asstore.o asstore.c - h08ext.o : h08ext.c asm.h m6808.h $(CC) $(CFLAGS) $(LDFLAGS) -c -o h08ext.o h08ext.c diff --git a/as/hc08/Makefile.bcc b/as/hc08/Makefile.bcc index 5e59393c..068d802b 100644 --- a/as/hc08/Makefile.bcc +++ b/as/hc08/Makefile.bcc @@ -5,7 +5,7 @@ PRJDIR = ../.. !include $(PRJDIR)/Bcc.inc ASOBJECTS = asmain.obj aslex.obj assubr.obj asnoice.obj \ - asexpr.obj asdata.obj aslist.obj asout.obj asstore.obj \ + asexpr.obj asdata.obj aslist.obj asout.obj \ h08ext.obj h08pst.obj h08mch.obj h08adr.obj \ ../asxxsrc/strcmpi.obj ../asxxsrc/assym.obj diff --git a/as/hc08/Makefile.in b/as/hc08/Makefile.in index 706fec62..66cf01f7 100644 --- a/as/hc08/Makefile.in +++ b/as/hc08/Makefile.in @@ -45,7 +45,7 @@ ASXXLIB = $(srcdir)/../asxxsrc ASXXLIBSRC = strcmpi.c assym.c SRC = asmain.c aslex.c assubr.c asnoice.c \ - asexpr.c asdata.c aslist.c asout.c asstore.c \ + asexpr.c asdata.c aslist.c asout.c \ m08ext.c m08pst.c m08mch.c m08adr.c ASSOURCES = %(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) diff --git a/as/hc08/as_hc08.dsp b/as/hc08/as_hc08.dsp index b2500ed7..72dbadee 100644 --- a/as/hc08/as_hc08.dsp +++ b/as/hc08/as_hc08.dsp @@ -115,10 +115,6 @@ SOURCE=.\asout.c # End Source File # Begin Source File -SOURCE=.\asstore.c -# End Source File -# Begin Source File - SOURCE=.\assubr.c # End Source File # Begin Source File diff --git a/as/hc08/asm.h b/as/hc08/asm.h index 4ce9ef5d..17e31dc6 100644 --- a/as/hc08/asm.h +++ b/as/hc08/asm.h @@ -667,9 +667,6 @@ extern VOID outr11(); /* JLH */ extern VOID outr19(struct expr *, int, int); extern VOID outdp(struct area *, struct expr *); -/* asstore.c */ -extern char *StoreString( char *str ); - /* asnoice.c */ extern void DefineNoICE_Line(); extern void DefineCDB_Line(); diff --git a/as/mcs51/Makefile.asx8051 b/as/mcs51/Makefile.asx8051 index cac54034..dc5103aa 100644 --- a/as/mcs51/Makefile.asx8051 +++ b/as/mcs51/Makefile.asx8051 @@ -5,7 +5,7 @@ INCROOT=. CFLAGS=-ggdb -O2 -I $(INCROOT) TARGETS=$(SDCCDIR)/bin/asx8051 ALLOBJECTS= asmain.o aslex.o assym.o assubr.o asnoice.o \ - asexpr.o asdata.o aslist.o asout.o asstore.o \ + asexpr.o asdata.o aslist.o asout.o \ i51ext.o i51pst.o i51mch.o i51adr.o strcmpi.o all:: $(TARGETS) @@ -40,9 +40,6 @@ asout.o : asout.c asm.h asnoice.o : asnoice.c asm.h $(CC) $(CFLAGS) $(LDFLAGS) -c -o asnoice.o asnoice.c -asstore.o : asstore.c asm.h - $(CC) $(CFLAGS) $(LDFLAGS) -c -o asstore.o asstore.c - i51ext.o : i51ext.c asm.h i8051.h $(CC) $(CFLAGS) $(LDFLAGS) -c -o i51ext.o i51ext.c diff --git a/as/mcs51/Makefile.bcc b/as/mcs51/Makefile.bcc index 72639819..825a7a3b 100644 --- a/as/mcs51/Makefile.bcc +++ b/as/mcs51/Makefile.bcc @@ -5,7 +5,7 @@ PRJDIR = ../.. !include $(PRJDIR)/Bcc.inc ASOBJECTS = asmain.obj aslex.obj assubr.obj asnoice.obj \ - asexpr.obj asdata.obj aslist.obj asout.obj asstore.obj \ + asexpr.obj asdata.obj aslist.obj asout.obj \ i51ext.obj i51pst.obj i51mch.obj i51adr.obj \ ../asxxsrc/strcmpi.obj ../asxxsrc/assym.obj diff --git a/as/mcs51/Makefile.in b/as/mcs51/Makefile.in index c73d1514..28d3d92b 100644 --- a/as/mcs51/Makefile.in +++ b/as/mcs51/Makefile.in @@ -45,7 +45,7 @@ ASXXLIB = $(srcdir)/../asxxsrc ASXXLIBSRC = strcmpi.c assym.c SRC = asmain.c aslex.c assubr.c asnoice.c \ - asexpr.c asdata.c aslist.c asout.c asstore.c \ + asexpr.c asdata.c aslist.c asout.c \ i51ext.c i51pst.c i51mch.c i51adr.c ASSOURCES = %(SRC) $(ASXXLIBSRC:%.c=$(ASXXLIB)/%.c) diff --git a/as/mcs51/asm.h b/as/mcs51/asm.h index 3dd84bce..6ef17d3a 100644 --- a/as/mcs51/asm.h +++ b/as/mcs51/asm.h @@ -681,9 +681,6 @@ extern VOID out_t24(int); extern VOID outr11(); /* JLH */ extern VOID outr19(struct expr *, int, int); -/* asstore.c */ -extern char *StoreString( char *str ); - /* asnoice.c */ extern void DefineNoICE_Line(); extern void DefineCDB_Line(); diff --git a/as/mcs51/asx8051.dsp b/as/mcs51/asx8051.dsp index b8670f91..745c46d1 100644 --- a/as/mcs51/asx8051.dsp +++ b/as/mcs51/asx8051.dsp @@ -116,10 +116,6 @@ SOURCE=.\asout.c # End Source File # Begin Source File -SOURCE=.\asstore.c -# End Source File -# Begin Source File - SOURCE=.\assubr.c # End Source File # Begin Source File -- 2.47.2