diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-09 23:26:39 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-09 23:26:39 +0000 |
commit | 158d385fd14ce35adcdce59741260e9ea4b32931 (patch) | |
tree | 1f53b8e10571d1d09056051dc598337a0f6b4f49 /lang/sdcc | |
parent | 28555d54ecdf95ded6a339ded763445734e0a93c (diff) | |
download | ports-158d385fd14ce35adcdce59741260e9ea4b32931.tar.gz ports-158d385fd14ce35adcdce59741260e9ea4b32931.zip |
Notes
Diffstat (limited to 'lang/sdcc')
-rw-r--r-- | lang/sdcc/Makefile | 113 | ||||
-rw-r--r-- | lang/sdcc/distinfo | 2 | ||||
-rw-r--r-- | lang/sdcc/files/patch-device-lib-Makefile.in | 11 | ||||
-rw-r--r-- | lang/sdcc/pkg-descr | 10 | ||||
-rw-r--r-- | lang/sdcc/pkg-plist | 1682 |
5 files changed, 1818 insertions, 0 deletions
diff --git a/lang/sdcc/Makefile b/lang/sdcc/Makefile new file mode 100644 index 000000000000..4943a18fe7eb --- /dev/null +++ b/lang/sdcc/Makefile @@ -0,0 +1,113 @@ +# New ports collection makefile for: sdcc +# Date created: 3 May 2004 +# Whom: Tijl Coosemans <tijl@ulyssis.org> +# +# $FreeBSD$ +# + +PORTNAME= sdcc +PORTVERSION= 2.4.0 +CATEGORIES= lang +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= sdcc + +MAINTAINER= tijl@ulyssis.org +COMMENT= Small Device C Compiler + +WRKSRC= ${WRKDIR}/sdcc + +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_LIBTOOL_VER= 15 + +OPTIONS= MCS51 "Intel mcs51 port" on \ + GBZ80 "Gameboy gbz80 port" on \ + Z80 "Z80 port" on \ + AVR "AVR port" on \ + DS390 "DS390 port" on \ + DS400 "DS400 port" on \ + PIC "PIC port" on \ + PIC16 "PIC16 port" on \ + XA51 "XA51 port" on \ + HC08 "HC08 port" on \ + UCSIM "The ucSim simulator" on \ + PACKIHX "A tool to pack (compress) Intel hex files" on + +.include <bsd.port.pre.mk> + +.if defined(WITHOUT_MCS51) +CONFIGURE_ARGS+= --disable-mcs51-port +PLIST_SUB+= MCS51="@comment " +.else +PLIST_SUB+= MCS51="" +.endif + +.if defined(WITHOUT_GBZ80) +CONFIGURE_ARGS+= --disable-gbz80-port +PLIST_SUB+= GBZ80="@comment " +.else +PLIST_SUB+= GBZ80="" +.endif + +.if defined(WITHOUT_Z80) +CONFIGURE_ARGS+= --disable-z80-port +PLIST_SUB+= Z80="@comment " +.else +PLIST_SUB+= Z80="" +.endif + +.if defined(WITHOUT_AVR) +CONFIGURE_ARGS+= --disable-avr-port +.endif + +.if defined(WITHOUT_DS390) +CONFIGURE_ARGS+= --disable-ds390-port +PLIST_SUB+= DS390="@comment " +.else +PLIST_SUB+= DS390="" +.endif + +.if defined(WITHOUT_DS400) +CONFIGURE_ARGS+= --disable-ds400-port +PLIST_SUB+= DS400="@comment " +.else +PLIST_SUB+= DS400="" +.endif + +.if defined(WITHOUT_PIC) +CONFIGURE_ARGS+= --disable-pic-port +.endif + +.if defined(WITHOUT_PIC16) +CONFIGURE_ARGS+= --disable-pic16-port +PLIST_SUB+= PIC16="@comment " +.else +PLIST_SUB+= PIC16="" +.endif + +.if defined(WITHOUT_XA51) +CONFIGURE_ARGS+= --disable-xa51-port +.endif + +.if defined(WITHOUT_HC08) +CONFIGURE_ARGS+= --disable-hc08-port +PLIST_SUB+= HC08="@comment " +.else +PLIST_SUB+= HC08="" +.endif + +.if defined(WITHOUT_UCSIM) +CONFIGURE_ARGS+= --disable-ucsim +PLIST_SUB+= UCSIM="@comment " +.else +PLIST_SUB+= UCSIM="" +.endif + +.if defined(WITHOUT_PACKIHX) +CONFIGURE_ARGS+= --disable-packihx +PLIST_SUB+= PACKIHX="@comment " +.else +PLIST_SUB+= PACKIHX="" +.endif + +.include <bsd.port.post.mk> diff --git a/lang/sdcc/distinfo b/lang/sdcc/distinfo new file mode 100644 index 000000000000..ee7b387d7689 --- /dev/null +++ b/lang/sdcc/distinfo @@ -0,0 +1,2 @@ +MD5 (sdcc-2.4.0.tar.gz) = ef959381f292d8857d8679f92a71582d +SIZE (sdcc-2.4.0.tar.gz) = 3021296 diff --git a/lang/sdcc/files/patch-device-lib-Makefile.in b/lang/sdcc/files/patch-device-lib-Makefile.in new file mode 100644 index 000000000000..d851d0ab761f --- /dev/null +++ b/lang/sdcc/files/patch-device-lib-Makefile.in @@ -0,0 +1,11 @@ +--- device/lib/Makefile.in.orig Tue May 4 16:55:47 2004 ++++ device/lib/Makefile.in Tue May 4 16:56:55 2004 +@@ -240,7 +240,7 @@ + # Compiling and installing everything and runing test + # --------------------------------------------------- + install: all installdirs +- cp -r $(BUILDDIR)/* $(sdcc_libdir) ++ -cp -r $(BUILDDIR)/* $(sdcc_libdir) + cp -r ds390 ds400 gbz80 z80 hc08 *.c $(sdcc_libdir)/src + rm -r `find $(sdcc_libdir)/src -name '*.rel' -or -name '*.dump*' -or -name '*.sym' -or -name '*.o' -or -name '*.lst' -or -name '*.asm' -or -name 'CVS'` + diff --git a/lang/sdcc/pkg-descr b/lang/sdcc/pkg-descr new file mode 100644 index 000000000000..44f702781f89 --- /dev/null +++ b/lang/sdcc/pkg-descr @@ -0,0 +1,10 @@ +SDCC is a Freeware, retargettable, optimizing ANSI-C compiler that +targets the Intel 8051, Maxim 80DS390 and the Zilog Z80 based MCUs. + +SDCC also comes with the source level debugger SDCDB, using the +current version of Daniel's s51 simulator. + +WWW: http://sdcc.sourceforge.net/ + +- Tijl Coosemans +tijl@ulyssis.org diff --git a/lang/sdcc/pkg-plist b/lang/sdcc/pkg-plist new file mode 100644 index 000000000000..76760d85a8f5 --- /dev/null +++ b/lang/sdcc/pkg-plist @@ -0,0 +1,1682 @@ +bin/as-gbz80 +bin/as-hc08 +bin/as-z80 +bin/aslink +bin/asx8051 +bin/link-gbz80 +bin/link-hc08 +bin/link-z80 +bin/makebin +%%PACKIHX%%bin/packihx +%%UCSIM%%bin/s51 +%%UCSIM%%bin/savr +bin/sdcc +bin/sdcclib +%%MCS51%%bin/sdcdb +%%MCS51%%bin/sdcdb.el +bin/sdcdbsrc.el +bin/sdcpp +%%UCSIM%%bin/serialview +%%UCSIM%%bin/shc08 +share/sdcc/doc/INSTALL.txt +share/sdcc/doc/README.txt +share/sdcc/doc/TININative.txt +share/sdcc/doc/aslink/README +share/sdcc/doc/aslink/abstra.doc +share/sdcc/doc/aslink/appendk.txt +share/sdcc/doc/aslink/asmlnk.doc +share/sdcc/doc/aslink/asxhtm.html +share/sdcc/doc/aslink/format.txt +share/sdcc/doc/avr/avr_design.txt +share/sdcc/doc/builtins.txt +share/sdcc/doc/choices.txt +share/sdcc/doc/libdoc.txt +share/sdcc/doc/macro-sys-design.txt +share/sdcc/doc/random-notes.txt +%%UCSIM%%share/sdcc/doc/ucsim/UCsim.jpg +%%UCSIM%%share/sdcc/doc/ucsim/analyzer.html +%%UCSIM%%share/sdcc/doc/ucsim/burst.gif +%%UCSIM%%share/sdcc/doc/ucsim/cmd.html +%%UCSIM%%share/sdcc/doc/ucsim/cmd_bp.html +%%UCSIM%%share/sdcc/doc/ucsim/cmd_dump.html +%%UCSIM%%share/sdcc/doc/ucsim/cmd_exec.html +%%UCSIM%%share/sdcc/doc/ucsim/cmd_general.html +%%UCSIM%%share/sdcc/doc/ucsim/cmd_removed.html +%%UCSIM%%share/sdcc/doc/ucsim/cmd_set.html +%%UCSIM%%share/sdcc/doc/ucsim/commref.html +%%UCSIM%%share/sdcc/doc/ucsim/cpu.gif +%%UCSIM%%share/sdcc/doc/ucsim/cpu.html +%%UCSIM%%share/sdcc/doc/ucsim/cpu_types.html +%%UCSIM%%share/sdcc/doc/ucsim/index.html +%%UCSIM%%share/sdcc/doc/ucsim/interrupt.gif +%%UCSIM%%share/sdcc/doc/ucsim/interrupt.html +%%UCSIM%%share/sdcc/doc/ucsim/invoke.html +%%UCSIM%%share/sdcc/doc/ucsim/mulcons.html +%%UCSIM%%share/sdcc/doc/ucsim/new.gif +%%UCSIM%%share/sdcc/doc/ucsim/obsolete.html +%%UCSIM%%share/sdcc/doc/ucsim/post.jpg +%%UCSIM%%share/sdcc/doc/ucsim/serial.html +%%UCSIM%%share/sdcc/doc/ucsim/serial1.fig +%%UCSIM%%share/sdcc/doc/ucsim/serial1.gif +%%UCSIM%%share/sdcc/doc/ucsim/serial2.fig +%%UCSIM%%share/sdcc/doc/ucsim/serial2.gif +%%UCSIM%%share/sdcc/doc/ucsim/syntax.html +%%UCSIM%%share/sdcc/doc/ucsim/term_cpuopt.gif +%%UCSIM%%share/sdcc/doc/ucsim/term_cpuopt.html +%%UCSIM%%share/sdcc/doc/ucsim/timers.gif +%%UCSIM%%share/sdcc/doc/ucsim/timers.html +%%UCSIM%%share/sdcc/doc/ucsim/wins.gif +%%UCSIM%%share/sdcc/doc/ucsim/wins.html +share/sdcc/doc/z80/Makefile +share/sdcc/doc/z80/README +share/sdcc/doc/z80/combined_i186_z80_design.tex +share/sdcc/include/8051.h +share/sdcc/include/8052.h +share/sdcc/include/80c51xa.h +share/sdcc/include/asm/default/features.h +share/sdcc/include/asm/gbz80/features.h +share/sdcc/include/asm/z80/features.h +share/sdcc/include/assert.h +share/sdcc/include/at89S8252.h +share/sdcc/include/at89c55.h +share/sdcc/include/at89x051.h +share/sdcc/include/at89x51.h +share/sdcc/include/at89x52.h +share/sdcc/include/c8051f000.h +share/sdcc/include/c8051f120.h +share/sdcc/include/c8051f300.h +share/sdcc/include/c8051f310.h +share/sdcc/include/c8051f320.h +share/sdcc/include/ctype.h +share/sdcc/include/ds400rom.h +share/sdcc/include/ds80c390.h +share/sdcc/include/errno.h +share/sdcc/include/float.h +share/sdcc/include/limits.h +share/sdcc/include/malloc.h +share/sdcc/include/math.h +share/sdcc/include/mc68hc908jb8.h +share/sdcc/include/mc68hc908qy.h +share/sdcc/include/mcs51reg.h +%%PIC16%%share/sdcc/include/pic16/pic18f242.h +%%PIC16%%share/sdcc/include/pic16/pic18f248.h +%%PIC16%%share/sdcc/include/pic16/pic18f252.h +%%PIC16%%share/sdcc/include/pic16/pic18f258.h +%%PIC16%%share/sdcc/include/pic16/pic18f442.h +%%PIC16%%share/sdcc/include/pic16/pic18f448.h +%%PIC16%%share/sdcc/include/pic16/pic18f452.h +%%PIC16%%share/sdcc/include/pic16/pic18f458.h +%%PIC16%%share/sdcc/include/pic16/pic18fregs.h +share/sdcc/include/reg51.h +share/sdcc/include/reg764.h +share/sdcc/include/regc515c.h +share/sdcc/include/sab80515.h +share/sdcc/include/sdcc-lib.h +share/sdcc/include/ser.h +share/sdcc/include/ser_ir.h +share/sdcc/include/serial.h +share/sdcc/include/serial390.h +share/sdcc/include/setjmp.h +share/sdcc/include/stdarg.h +share/sdcc/include/stdio.h +share/sdcc/include/stdlib.h +share/sdcc/include/string.h +share/sdcc/include/time.h +share/sdcc/include/tinibios.h +share/sdcc/include/typeof.h +share/sdcc/include/z180.h +%%DS390%%share/sdcc/lib/ds390/_atof.asm +%%DS390%%share/sdcc/lib/ds390/_atof.rel +%%DS390%%share/sdcc/lib/ds390/_atoi.asm +%%DS390%%share/sdcc/lib/ds390/_atoi.rel +%%DS390%%share/sdcc/lib/ds390/_atol.asm +%%DS390%%share/sdcc/lib/ds390/_atol.rel +%%DS390%%share/sdcc/lib/ds390/_autobaud.asm +%%DS390%%share/sdcc/lib/ds390/_autobaud.rel +%%DS390%%share/sdcc/lib/ds390/_bp.asm +%%DS390%%share/sdcc/lib/ds390/_bp.rel +%%DS390%%share/sdcc/lib/ds390/_decdptr.asm +%%DS390%%share/sdcc/lib/ds390/_decdptr.rel +%%DS390%%share/sdcc/lib/ds390/_divsint.asm +%%DS390%%share/sdcc/lib/ds390/_divsint.rel +%%DS390%%share/sdcc/lib/ds390/_divslong.asm +%%DS390%%share/sdcc/lib/ds390/_divslong.rel +%%DS390%%share/sdcc/lib/ds390/_divuint.asm +%%DS390%%share/sdcc/lib/ds390/_divuint.rel +%%DS390%%share/sdcc/lib/ds390/_divulong.asm +%%DS390%%share/sdcc/lib/ds390/_divulong.rel +%%DS390%%share/sdcc/lib/ds390/_fs2schar.asm +%%DS390%%share/sdcc/lib/ds390/_fs2schar.rel +%%DS390%%share/sdcc/lib/ds390/_fs2sint.asm +%%DS390%%share/sdcc/lib/ds390/_fs2sint.rel +%%DS390%%share/sdcc/lib/ds390/_fs2slong.asm +%%DS390%%share/sdcc/lib/ds390/_fs2slong.rel +%%DS390%%share/sdcc/lib/ds390/_fs2uchar.asm +%%DS390%%share/sdcc/lib/ds390/_fs2uchar.rel +%%DS390%%share/sdcc/lib/ds390/_fs2uint.asm +%%DS390%%share/sdcc/lib/ds390/_fs2uint.rel +%%DS390%%share/sdcc/lib/ds390/_fs2ulong.asm +%%DS390%%share/sdcc/lib/ds390/_fs2ulong.rel +%%DS390%%share/sdcc/lib/ds390/_fsadd.asm +%%DS390%%share/sdcc/lib/ds390/_fsadd.rel +%%DS390%%share/sdcc/lib/ds390/_fsdiv.asm +%%DS390%%share/sdcc/lib/ds390/_fsdiv.rel +%%DS390%%share/sdcc/lib/ds390/_fseq.asm +%%DS390%%share/sdcc/lib/ds390/_fseq.rel +%%DS390%%share/sdcc/lib/ds390/_fsgt.asm +%%DS390%%share/sdcc/lib/ds390/_fsgt.rel +%%DS390%%share/sdcc/lib/ds390/_fslt.asm +%%DS390%%share/sdcc/lib/ds390/_fslt.rel +%%DS390%%share/sdcc/lib/ds390/_fsmul.asm +%%DS390%%share/sdcc/lib/ds390/_fsmul.rel +%%DS390%%share/sdcc/lib/ds390/_fsneq.asm +%%DS390%%share/sdcc/lib/ds390/_fsneq.rel +%%DS390%%share/sdcc/lib/ds390/_fssub.asm +%%DS390%%share/sdcc/lib/ds390/_fssub.rel +%%DS390%%share/sdcc/lib/ds390/_gptrget.asm +%%DS390%%share/sdcc/lib/ds390/_gptrget.rel +%%DS390%%share/sdcc/lib/ds390/_gptrgetc.asm +%%DS390%%share/sdcc/lib/ds390/_gptrgetc.rel +%%DS390%%share/sdcc/lib/ds390/_gptrput.asm +%%DS390%%share/sdcc/lib/ds390/_gptrput.rel +%%DS390%%share/sdcc/lib/ds390/_iscntrl.asm +%%DS390%%share/sdcc/lib/ds390/_iscntrl.rel +%%DS390%%share/sdcc/lib/ds390/_isdigit.asm +%%DS390%%share/sdcc/lib/ds390/_isdigit.rel +%%DS390%%share/sdcc/lib/ds390/_isgraph.asm +%%DS390%%share/sdcc/lib/ds390/_isgraph.rel +%%DS390%%share/sdcc/lib/ds390/_islower.asm +%%DS390%%share/sdcc/lib/ds390/_islower.rel +%%DS390%%share/sdcc/lib/ds390/_isprint.asm +%%DS390%%share/sdcc/lib/ds390/_isprint.rel +%%DS390%%share/sdcc/lib/ds390/_ispunct.asm +%%DS390%%share/sdcc/lib/ds390/_ispunct.rel +%%DS390%%share/sdcc/lib/ds390/_isspace.asm +%%DS390%%share/sdcc/lib/ds390/_isspace.rel +%%DS390%%share/sdcc/lib/ds390/_isupper.asm +%%DS390%%share/sdcc/lib/ds390/_isupper.rel +%%DS390%%share/sdcc/lib/ds390/_isxdigit.asm +%%DS390%%share/sdcc/lib/ds390/_isxdigit.rel +%%DS390%%share/sdcc/lib/ds390/_itoa.asm +%%DS390%%share/sdcc/lib/ds390/_itoa.rel +%%DS390%%share/sdcc/lib/ds390/_ltoa.asm +%%DS390%%share/sdcc/lib/ds390/_ltoa.rel +%%DS390%%share/sdcc/lib/ds390/_memcmp.asm +%%DS390%%share/sdcc/lib/ds390/_memcmp.rel +%%DS390%%share/sdcc/lib/ds390/_memcpy.asm +%%DS390%%share/sdcc/lib/ds390/_memcpy.rel +%%DS390%%share/sdcc/lib/ds390/_memmove.asm +%%DS390%%share/sdcc/lib/ds390/_memmove.rel +%%DS390%%share/sdcc/lib/ds390/_memset.asm +%%DS390%%share/sdcc/lib/ds390/_memset.rel +%%DS390%%share/sdcc/lib/ds390/_modsint.asm +%%DS390%%share/sdcc/lib/ds390/_modsint.rel +%%DS390%%share/sdcc/lib/ds390/_modslong.asm +%%DS390%%share/sdcc/lib/ds390/_modslong.rel +%%DS390%%share/sdcc/lib/ds390/_moduint.asm +%%DS390%%share/sdcc/lib/ds390/_moduint.rel +%%DS390%%share/sdcc/lib/ds390/_modulong.asm +%%DS390%%share/sdcc/lib/ds390/_modulong.rel +%%DS390%%share/sdcc/lib/ds390/_mulint.asm +%%DS390%%share/sdcc/lib/ds390/_mulint.rel +%%DS390%%share/sdcc/lib/ds390/_mullong.asm +%%DS390%%share/sdcc/lib/ds390/_mullong.rel +%%DS390%%share/sdcc/lib/ds390/_schar2fs.asm +%%DS390%%share/sdcc/lib/ds390/_schar2fs.rel +%%DS390%%share/sdcc/lib/ds390/_ser.asm +%%DS390%%share/sdcc/lib/ds390/_ser.rel +%%DS390%%share/sdcc/lib/ds390/_setjmp.asm +%%DS390%%share/sdcc/lib/ds390/_setjmp.rel +%%DS390%%share/sdcc/lib/ds390/_sint2fs.asm +%%DS390%%share/sdcc/lib/ds390/_sint2fs.rel +%%DS390%%share/sdcc/lib/ds390/_slong2fs.asm +%%DS390%%share/sdcc/lib/ds390/_slong2fs.rel +%%DS390%%share/sdcc/lib/ds390/_spx.asm +%%DS390%%share/sdcc/lib/ds390/_spx.rel +%%DS390%%share/sdcc/lib/ds390/_startup.asm +%%DS390%%share/sdcc/lib/ds390/_startup.rel +%%DS390%%share/sdcc/lib/ds390/_strcat.asm +%%DS390%%share/sdcc/lib/ds390/_strcat.rel +%%DS390%%share/sdcc/lib/ds390/_strchr.asm +%%DS390%%share/sdcc/lib/ds390/_strchr.rel +%%DS390%%share/sdcc/lib/ds390/_strcmp.asm +%%DS390%%share/sdcc/lib/ds390/_strcmp.rel +%%DS390%%share/sdcc/lib/ds390/_strcpy.asm +%%DS390%%share/sdcc/lib/ds390/_strcpy.rel +%%DS390%%share/sdcc/lib/ds390/_strcspn.asm +%%DS390%%share/sdcc/lib/ds390/_strcspn.rel +%%DS390%%share/sdcc/lib/ds390/_strlen.asm +%%DS390%%share/sdcc/lib/ds390/_strlen.rel +%%DS390%%share/sdcc/lib/ds390/_strncat.asm +%%DS390%%share/sdcc/lib/ds390/_strncat.rel +%%DS390%%share/sdcc/lib/ds390/_strncmp.asm +%%DS390%%share/sdcc/lib/ds390/_strncmp.rel +%%DS390%%share/sdcc/lib/ds390/_strncpy.asm +%%DS390%%share/sdcc/lib/ds390/_strncpy.rel +%%DS390%%share/sdcc/lib/ds390/_strpbrk.asm +%%DS390%%share/sdcc/lib/ds390/_strpbrk.rel +%%DS390%%share/sdcc/lib/ds390/_strrchr.asm +%%DS390%%share/sdcc/lib/ds390/_strrchr.rel +%%DS390%%share/sdcc/lib/ds390/_strspn.asm +%%DS390%%share/sdcc/lib/ds390/_strspn.rel +%%DS390%%share/sdcc/lib/ds390/_strstr.asm +%%DS390%%share/sdcc/lib/ds390/_strstr.rel +%%DS390%%share/sdcc/lib/ds390/_strtok.asm +%%DS390%%share/sdcc/lib/ds390/_strtok.rel +%%DS390%%share/sdcc/lib/ds390/_uchar2fs.asm +%%DS390%%share/sdcc/lib/ds390/_uchar2fs.rel +%%DS390%%share/sdcc/lib/ds390/_uint2fs.asm +%%DS390%%share/sdcc/lib/ds390/_uint2fs.rel +%%DS390%%share/sdcc/lib/ds390/_ulong2fs.asm +%%DS390%%share/sdcc/lib/ds390/_ulong2fs.rel +%%DS390%%share/sdcc/lib/ds390/acosf.asm +%%DS390%%share/sdcc/lib/ds390/acosf.rel +%%DS390%%share/sdcc/lib/ds390/asincosf.asm +%%DS390%%share/sdcc/lib/ds390/asincosf.rel +%%DS390%%share/sdcc/lib/ds390/asinf.asm +%%DS390%%share/sdcc/lib/ds390/asinf.rel +%%DS390%%share/sdcc/lib/ds390/assert.asm +%%DS390%%share/sdcc/lib/ds390/assert.rel +%%DS390%%share/sdcc/lib/ds390/atan2f.asm +%%DS390%%share/sdcc/lib/ds390/atan2f.rel +%%DS390%%share/sdcc/lib/ds390/atanf.asm +%%DS390%%share/sdcc/lib/ds390/atanf.rel +%%DS390%%share/sdcc/lib/ds390/bpx.asm +%%DS390%%share/sdcc/lib/ds390/bpx.rel +%%DS390%%share/sdcc/lib/ds390/ceilf.asm +%%DS390%%share/sdcc/lib/ds390/ceilf.rel +%%DS390%%share/sdcc/lib/ds390/cosf.asm +%%DS390%%share/sdcc/lib/ds390/cosf.rel +%%DS390%%share/sdcc/lib/ds390/coshf.asm +%%DS390%%share/sdcc/lib/ds390/coshf.rel +%%DS390%%share/sdcc/lib/ds390/cotf.asm +%%DS390%%share/sdcc/lib/ds390/cotf.rel +%%DS390%%share/sdcc/lib/ds390/errno.asm +%%DS390%%share/sdcc/lib/ds390/errno.rel +%%DS390%%share/sdcc/lib/ds390/expf.asm +%%DS390%%share/sdcc/lib/ds390/expf.rel +%%DS390%%share/sdcc/lib/ds390/fabsf.asm +%%DS390%%share/sdcc/lib/ds390/fabsf.rel +%%DS390%%share/sdcc/lib/ds390/floorf.asm +%%DS390%%share/sdcc/lib/ds390/floorf.rel +%%DS390%%share/sdcc/lib/ds390/frexpf.asm +%%DS390%%share/sdcc/lib/ds390/frexpf.rel +%%DS390%%share/sdcc/lib/ds390/gets.asm +%%DS390%%share/sdcc/lib/ds390/gets.rel +%%DS390%%share/sdcc/lib/ds390/i2c390.rel +%%DS390%%share/sdcc/lib/ds390/lcd390.rel +%%DS390%%share/sdcc/lib/ds390/ldexpf.asm +%%DS390%%share/sdcc/lib/ds390/ldexpf.rel +%%DS390%%share/sdcc/lib/ds390/libds390.lib +%%DS390%%share/sdcc/lib/ds390/libfloat.lib +%%DS390%%share/sdcc/lib/ds390/libint.lib +%%DS390%%share/sdcc/lib/ds390/liblong.lib +%%DS390%%share/sdcc/lib/ds390/libsdcc.lib +%%DS390%%share/sdcc/lib/ds390/log10f.asm +%%DS390%%share/sdcc/lib/ds390/log10f.rel +%%DS390%%share/sdcc/lib/ds390/logf.asm +%%DS390%%share/sdcc/lib/ds390/logf.rel +%%DS390%%share/sdcc/lib/ds390/malloc.asm +%%DS390%%share/sdcc/lib/ds390/malloc.rel +%%DS390%%share/sdcc/lib/ds390/memcpyx.rel +%%DS390%%share/sdcc/lib/ds390/modff.asm +%%DS390%%share/sdcc/lib/ds390/modff.rel +%%DS390%%share/sdcc/lib/ds390/powf.asm +%%DS390%%share/sdcc/lib/ds390/powf.rel +%%DS390%%share/sdcc/lib/ds390/printf_fast.asm +%%DS390%%share/sdcc/lib/ds390/printf_fast.rel +%%DS390%%share/sdcc/lib/ds390/printf_large.asm +%%DS390%%share/sdcc/lib/ds390/printf_large.rel +%%DS390%%share/sdcc/lib/ds390/printfl.asm +%%DS390%%share/sdcc/lib/ds390/printfl.rel +%%DS390%%share/sdcc/lib/ds390/puts.asm +%%DS390%%share/sdcc/lib/ds390/puts.rel +%%DS390%%share/sdcc/lib/ds390/rtc390.rel +%%DS390%%share/sdcc/lib/ds390/ser_ir.asm +%%DS390%%share/sdcc/lib/ds390/ser_ir.rel +%%DS390%%share/sdcc/lib/ds390/serial.asm +%%DS390%%share/sdcc/lib/ds390/serial.rel +%%DS390%%share/sdcc/lib/ds390/sincosf.asm +%%DS390%%share/sdcc/lib/ds390/sincosf.rel +%%DS390%%share/sdcc/lib/ds390/sincoshf.asm +%%DS390%%share/sdcc/lib/ds390/sincoshf.rel +%%DS390%%share/sdcc/lib/ds390/sinf.asm +%%DS390%%share/sdcc/lib/ds390/sinf.rel +%%DS390%%share/sdcc/lib/ds390/sinhf.asm +%%DS390%%share/sdcc/lib/ds390/sinhf.rel +%%DS390%%share/sdcc/lib/ds390/sqrtf.asm +%%DS390%%share/sdcc/lib/ds390/sqrtf.rel +%%DS390%%share/sdcc/lib/ds390/tancotf.asm +%%DS390%%share/sdcc/lib/ds390/tancotf.rel +%%DS390%%share/sdcc/lib/ds390/tanf.asm +%%DS390%%share/sdcc/lib/ds390/tanf.rel +%%DS390%%share/sdcc/lib/ds390/tanhf.asm +%%DS390%%share/sdcc/lib/ds390/tanhf.rel +%%DS390%%share/sdcc/lib/ds390/time.asm +%%DS390%%share/sdcc/lib/ds390/time.rel +%%DS390%%share/sdcc/lib/ds390/tinibios.rel +%%DS390%%share/sdcc/lib/ds390/vprintf.asm +%%DS390%%share/sdcc/lib/ds390/vprintf.rel +%%DS400%%share/sdcc/lib/ds400/_atof.asm +%%DS400%%share/sdcc/lib/ds400/_atof.rel +%%DS400%%share/sdcc/lib/ds400/_atoi.asm +%%DS400%%share/sdcc/lib/ds400/_atoi.rel +%%DS400%%share/sdcc/lib/ds400/_atol.asm +%%DS400%%share/sdcc/lib/ds400/_atol.rel +%%DS400%%share/sdcc/lib/ds400/_autobaud.asm +%%DS400%%share/sdcc/lib/ds400/_autobaud.rel +%%DS400%%share/sdcc/lib/ds400/_bp.asm +%%DS400%%share/sdcc/lib/ds400/_bp.rel +%%DS400%%share/sdcc/lib/ds400/_decdptr.asm +%%DS400%%share/sdcc/lib/ds400/_decdptr.rel +%%DS400%%share/sdcc/lib/ds400/_divsint.asm +%%DS400%%share/sdcc/lib/ds400/_divsint.rel +%%DS400%%share/sdcc/lib/ds400/_divslong.asm +%%DS400%%share/sdcc/lib/ds400/_divslong.rel +%%DS400%%share/sdcc/lib/ds400/_divuint.asm +%%DS400%%share/sdcc/lib/ds400/_divuint.rel +%%DS400%%share/sdcc/lib/ds400/_divulong.asm +%%DS400%%share/sdcc/lib/ds400/_divulong.rel +%%DS400%%share/sdcc/lib/ds400/_fs2schar.asm +%%DS400%%share/sdcc/lib/ds400/_fs2schar.rel +%%DS400%%share/sdcc/lib/ds400/_fs2sint.asm +%%DS400%%share/sdcc/lib/ds400/_fs2sint.rel +%%DS400%%share/sdcc/lib/ds400/_fs2slong.asm +%%DS400%%share/sdcc/lib/ds400/_fs2slong.rel +%%DS400%%share/sdcc/lib/ds400/_fs2uchar.asm +%%DS400%%share/sdcc/lib/ds400/_fs2uchar.rel +%%DS400%%share/sdcc/lib/ds400/_fs2uint.asm +%%DS400%%share/sdcc/lib/ds400/_fs2uint.rel +%%DS400%%share/sdcc/lib/ds400/_fs2ulong.asm +%%DS400%%share/sdcc/lib/ds400/_fs2ulong.rel +%%DS400%%share/sdcc/lib/ds400/_fsadd.asm +%%DS400%%share/sdcc/lib/ds400/_fsadd.rel +%%DS400%%share/sdcc/lib/ds400/_fsdiv.asm +%%DS400%%share/sdcc/lib/ds400/_fsdiv.rel +%%DS400%%share/sdcc/lib/ds400/_fseq.asm +%%DS400%%share/sdcc/lib/ds400/_fseq.rel +%%DS400%%share/sdcc/lib/ds400/_fsgt.asm +%%DS400%%share/sdcc/lib/ds400/_fsgt.rel +%%DS400%%share/sdcc/lib/ds400/_fslt.asm +%%DS400%%share/sdcc/lib/ds400/_fslt.rel +%%DS400%%share/sdcc/lib/ds400/_fsmul.asm +%%DS400%%share/sdcc/lib/ds400/_fsmul.rel +%%DS400%%share/sdcc/lib/ds400/_fsneq.asm +%%DS400%%share/sdcc/lib/ds400/_fsneq.rel +%%DS400%%share/sdcc/lib/ds400/_fssub.asm +%%DS400%%share/sdcc/lib/ds400/_fssub.rel +%%DS400%%share/sdcc/lib/ds400/_gptrget.asm +%%DS400%%share/sdcc/lib/ds400/_gptrget.rel +%%DS400%%share/sdcc/lib/ds400/_gptrgetc.asm +%%DS400%%share/sdcc/lib/ds400/_gptrgetc.rel +%%DS400%%share/sdcc/lib/ds400/_gptrput.asm +%%DS400%%share/sdcc/lib/ds400/_gptrput.rel +%%DS400%%share/sdcc/lib/ds400/_iscntrl.asm +%%DS400%%share/sdcc/lib/ds400/_iscntrl.rel +%%DS400%%share/sdcc/lib/ds400/_isdigit.asm +%%DS400%%share/sdcc/lib/ds400/_isdigit.rel +%%DS400%%share/sdcc/lib/ds400/_isgraph.asm +%%DS400%%share/sdcc/lib/ds400/_isgraph.rel +%%DS400%%share/sdcc/lib/ds400/_islower.asm +%%DS400%%share/sdcc/lib/ds400/_islower.rel +%%DS400%%share/sdcc/lib/ds400/_isprint.asm +%%DS400%%share/sdcc/lib/ds400/_isprint.rel +%%DS400%%share/sdcc/lib/ds400/_ispunct.asm +%%DS400%%share/sdcc/lib/ds400/_ispunct.rel +%%DS400%%share/sdcc/lib/ds400/_isspace.asm +%%DS400%%share/sdcc/lib/ds400/_isspace.rel +%%DS400%%share/sdcc/lib/ds400/_isupper.asm +%%DS400%%share/sdcc/lib/ds400/_isupper.rel +%%DS400%%share/sdcc/lib/ds400/_isxdigit.asm +%%DS400%%share/sdcc/lib/ds400/_isxdigit.rel +%%DS400%%share/sdcc/lib/ds400/_itoa.asm +%%DS400%%share/sdcc/lib/ds400/_itoa.rel +%%DS400%%share/sdcc/lib/ds400/_ltoa.asm +%%DS400%%share/sdcc/lib/ds400/_ltoa.rel +%%DS400%%share/sdcc/lib/ds400/_memcmp.asm +%%DS400%%share/sdcc/lib/ds400/_memcmp.rel +%%DS400%%share/sdcc/lib/ds400/_memcpy.asm +%%DS400%%share/sdcc/lib/ds400/_memcpy.rel +%%DS400%%share/sdcc/lib/ds400/_memmove.asm +%%DS400%%share/sdcc/lib/ds400/_memmove.rel +%%DS400%%share/sdcc/lib/ds400/_memset.asm +%%DS400%%share/sdcc/lib/ds400/_memset.rel +%%DS400%%share/sdcc/lib/ds400/_modsint.asm +%%DS400%%share/sdcc/lib/ds400/_modsint.rel +%%DS400%%share/sdcc/lib/ds400/_modslong.asm +%%DS400%%share/sdcc/lib/ds400/_modslong.rel +%%DS400%%share/sdcc/lib/ds400/_moduint.asm +%%DS400%%share/sdcc/lib/ds400/_moduint.rel +%%DS400%%share/sdcc/lib/ds400/_modulong.asm +%%DS400%%share/sdcc/lib/ds400/_modulong.rel +%%DS400%%share/sdcc/lib/ds400/_mulint.asm +%%DS400%%share/sdcc/lib/ds400/_mulint.rel +%%DS400%%share/sdcc/lib/ds400/_mullong.asm +%%DS400%%share/sdcc/lib/ds400/_mullong.rel +%%DS400%%share/sdcc/lib/ds400/_schar2fs.asm +%%DS400%%share/sdcc/lib/ds400/_schar2fs.rel +%%DS400%%share/sdcc/lib/ds400/_ser.asm +%%DS400%%share/sdcc/lib/ds400/_ser.rel +%%DS400%%share/sdcc/lib/ds400/_setjmp.asm +%%DS400%%share/sdcc/lib/ds400/_setjmp.rel +%%DS400%%share/sdcc/lib/ds400/_sint2fs.asm +%%DS400%%share/sdcc/lib/ds400/_sint2fs.rel +%%DS400%%share/sdcc/lib/ds400/_slong2fs.asm +%%DS400%%share/sdcc/lib/ds400/_slong2fs.rel +%%DS400%%share/sdcc/lib/ds400/_spx.asm +%%DS400%%share/sdcc/lib/ds400/_spx.rel +%%DS400%%share/sdcc/lib/ds400/_startup.asm +%%DS400%%share/sdcc/lib/ds400/_startup.rel +%%DS400%%share/sdcc/lib/ds400/_strcat.asm +%%DS400%%share/sdcc/lib/ds400/_strcat.rel +%%DS400%%share/sdcc/lib/ds400/_strchr.asm +%%DS400%%share/sdcc/lib/ds400/_strchr.rel +%%DS400%%share/sdcc/lib/ds400/_strcmp.asm +%%DS400%%share/sdcc/lib/ds400/_strcmp.rel +%%DS400%%share/sdcc/lib/ds400/_strcpy.asm +%%DS400%%share/sdcc/lib/ds400/_strcpy.rel +%%DS400%%share/sdcc/lib/ds400/_strcspn.asm +%%DS400%%share/sdcc/lib/ds400/_strcspn.rel +%%DS400%%share/sdcc/lib/ds400/_strlen.asm +%%DS400%%share/sdcc/lib/ds400/_strlen.rel +%%DS400%%share/sdcc/lib/ds400/_strncat.asm +%%DS400%%share/sdcc/lib/ds400/_strncat.rel +%%DS400%%share/sdcc/lib/ds400/_strncmp.asm +%%DS400%%share/sdcc/lib/ds400/_strncmp.rel +%%DS400%%share/sdcc/lib/ds400/_strncpy.asm +%%DS400%%share/sdcc/lib/ds400/_strncpy.rel +%%DS400%%share/sdcc/lib/ds400/_strpbrk.asm +%%DS400%%share/sdcc/lib/ds400/_strpbrk.rel +%%DS400%%share/sdcc/lib/ds400/_strrchr.asm +%%DS400%%share/sdcc/lib/ds400/_strrchr.rel +%%DS400%%share/sdcc/lib/ds400/_strspn.asm +%%DS400%%share/sdcc/lib/ds400/_strspn.rel +%%DS400%%share/sdcc/lib/ds400/_strstr.asm +%%DS400%%share/sdcc/lib/ds400/_strstr.rel +%%DS400%%share/sdcc/lib/ds400/_strtok.asm +%%DS400%%share/sdcc/lib/ds400/_strtok.rel +%%DS400%%share/sdcc/lib/ds400/_uchar2fs.asm +%%DS400%%share/sdcc/lib/ds400/_uchar2fs.rel +%%DS400%%share/sdcc/lib/ds400/_uint2fs.asm +%%DS400%%share/sdcc/lib/ds400/_uint2fs.rel +%%DS400%%share/sdcc/lib/ds400/_ulong2fs.asm +%%DS400%%share/sdcc/lib/ds400/_ulong2fs.rel +%%DS400%%share/sdcc/lib/ds400/acosf.asm +%%DS400%%share/sdcc/lib/ds400/acosf.rel +%%DS400%%share/sdcc/lib/ds400/asincosf.asm +%%DS400%%share/sdcc/lib/ds400/asincosf.rel +%%DS400%%share/sdcc/lib/ds400/asinf.asm +%%DS400%%share/sdcc/lib/ds400/asinf.rel +%%DS400%%share/sdcc/lib/ds400/assert.asm +%%DS400%%share/sdcc/lib/ds400/assert.rel +%%DS400%%share/sdcc/lib/ds400/atan2f.asm +%%DS400%%share/sdcc/lib/ds400/atan2f.rel +%%DS400%%share/sdcc/lib/ds400/atanf.asm +%%DS400%%share/sdcc/lib/ds400/atanf.rel +%%DS400%%share/sdcc/lib/ds400/bpx.asm +%%DS400%%share/sdcc/lib/ds400/bpx.rel +%%DS400%%share/sdcc/lib/ds400/ceilf.asm +%%DS400%%share/sdcc/lib/ds400/ceilf.rel +%%DS400%%share/sdcc/lib/ds400/cosf.asm +%%DS400%%share/sdcc/lib/ds400/cosf.rel +%%DS400%%share/sdcc/lib/ds400/coshf.asm +%%DS400%%share/sdcc/lib/ds400/coshf.rel +%%DS400%%share/sdcc/lib/ds400/cotf.asm +%%DS400%%share/sdcc/lib/ds400/cotf.rel +%%DS400%%share/sdcc/lib/ds400/ds400rom.rel +%%DS400%%share/sdcc/lib/ds400/errno.asm +%%DS400%%share/sdcc/lib/ds400/errno.rel +%%DS400%%share/sdcc/lib/ds400/expf.asm +%%DS400%%share/sdcc/lib/ds400/expf.rel +%%DS400%%share/sdcc/lib/ds400/fabsf.asm +%%DS400%%share/sdcc/lib/ds400/fabsf.rel +%%DS400%%share/sdcc/lib/ds400/floorf.asm +%%DS400%%share/sdcc/lib/ds400/floorf.rel +%%DS400%%share/sdcc/lib/ds400/frexpf.asm +%%DS400%%share/sdcc/lib/ds400/frexpf.rel +%%DS400%%share/sdcc/lib/ds400/gets.asm +%%DS400%%share/sdcc/lib/ds400/gets.rel +%%DS400%%share/sdcc/lib/ds400/ldexpf.asm +%%DS400%%share/sdcc/lib/ds400/ldexpf.rel +%%DS400%%share/sdcc/lib/ds400/libds400.lib +%%DS400%%share/sdcc/lib/ds400/libfloat.lib +%%DS400%%share/sdcc/lib/ds400/libint.lib +%%DS400%%share/sdcc/lib/ds400/liblong.lib +%%DS400%%share/sdcc/lib/ds400/libsdcc.lib +%%DS400%%share/sdcc/lib/ds400/log10f.asm +%%DS400%%share/sdcc/lib/ds400/log10f.rel +%%DS400%%share/sdcc/lib/ds400/logf.asm +%%DS400%%share/sdcc/lib/ds400/logf.rel +%%DS400%%share/sdcc/lib/ds400/malloc.asm +%%DS400%%share/sdcc/lib/ds400/malloc.rel +%%DS400%%share/sdcc/lib/ds400/memcpyx.rel +%%DS400%%share/sdcc/lib/ds400/modff.asm +%%DS400%%share/sdcc/lib/ds400/modff.rel +%%DS400%%share/sdcc/lib/ds400/powf.asm +%%DS400%%share/sdcc/lib/ds400/powf.rel +%%DS400%%share/sdcc/lib/ds400/printf_fast.asm +%%DS400%%share/sdcc/lib/ds400/printf_fast.rel +%%DS400%%share/sdcc/lib/ds400/printf_large.asm +%%DS400%%share/sdcc/lib/ds400/printf_large.rel +%%DS400%%share/sdcc/lib/ds400/printfl.asm +%%DS400%%share/sdcc/lib/ds400/printfl.rel +%%DS400%%share/sdcc/lib/ds400/puts.asm +%%DS400%%share/sdcc/lib/ds400/puts.rel +%%DS400%%share/sdcc/lib/ds400/ser_ir.asm +%%DS400%%share/sdcc/lib/ds400/ser_ir.rel +%%DS400%%share/sdcc/lib/ds400/serial.asm +%%DS400%%share/sdcc/lib/ds400/serial.rel +%%DS400%%share/sdcc/lib/ds400/sincosf.asm +%%DS400%%share/sdcc/lib/ds400/sincosf.rel +%%DS400%%share/sdcc/lib/ds400/sincoshf.asm +%%DS400%%share/sdcc/lib/ds400/sincoshf.rel +%%DS400%%share/sdcc/lib/ds400/sinf.asm +%%DS400%%share/sdcc/lib/ds400/sinf.rel +%%DS400%%share/sdcc/lib/ds400/sinhf.asm +%%DS400%%share/sdcc/lib/ds400/sinhf.rel +%%DS400%%share/sdcc/lib/ds400/sqrtf.asm +%%DS400%%share/sdcc/lib/ds400/sqrtf.rel +%%DS400%%share/sdcc/lib/ds400/tancotf.asm +%%DS400%%share/sdcc/lib/ds400/tancotf.rel +%%DS400%%share/sdcc/lib/ds400/tanf.asm +%%DS400%%share/sdcc/lib/ds400/tanf.rel +%%DS400%%share/sdcc/lib/ds400/tanhf.asm +%%DS400%%share/sdcc/lib/ds400/tanhf.rel +%%DS400%%share/sdcc/lib/ds400/time.asm +%%DS400%%share/sdcc/lib/ds400/time.rel +%%DS400%%share/sdcc/lib/ds400/tinibios.rel +%%DS400%%share/sdcc/lib/ds400/vprintf.asm +%%DS400%%share/sdcc/lib/ds400/vprintf.rel +%%GBZ80%%share/sdcc/lib/gbz80/_atof.asm +%%GBZ80%%share/sdcc/lib/gbz80/_atof.o +%%GBZ80%%share/sdcc/lib/gbz80/_atoi.asm +%%GBZ80%%share/sdcc/lib/gbz80/_atoi.o +%%GBZ80%%share/sdcc/lib/gbz80/_divslong.asm +%%GBZ80%%share/sdcc/lib/gbz80/_divslong.o +%%GBZ80%%share/sdcc/lib/gbz80/_divulong.asm +%%GBZ80%%share/sdcc/lib/gbz80/_divulong.o +%%GBZ80%%share/sdcc/lib/gbz80/_fs2schar.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fs2schar.o +%%GBZ80%%share/sdcc/lib/gbz80/_fs2sint.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fs2sint.o +%%GBZ80%%share/sdcc/lib/gbz80/_fs2slong.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fs2slong.o +%%GBZ80%%share/sdcc/lib/gbz80/_fs2uchar.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fs2uchar.o +%%GBZ80%%share/sdcc/lib/gbz80/_fs2uint.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fs2uint.o +%%GBZ80%%share/sdcc/lib/gbz80/_fs2ulong.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fs2ulong.o +%%GBZ80%%share/sdcc/lib/gbz80/_fsadd.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fsadd.o +%%GBZ80%%share/sdcc/lib/gbz80/_fsdiv.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fsdiv.o +%%GBZ80%%share/sdcc/lib/gbz80/_fseq.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fseq.o +%%GBZ80%%share/sdcc/lib/gbz80/_fsgt.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fsgt.o +%%GBZ80%%share/sdcc/lib/gbz80/_fslt.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fslt.o +%%GBZ80%%share/sdcc/lib/gbz80/_fsmul.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fsmul.o +%%GBZ80%%share/sdcc/lib/gbz80/_fsneq.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fsneq.o +%%GBZ80%%share/sdcc/lib/gbz80/_fssub.asm +%%GBZ80%%share/sdcc/lib/gbz80/_fssub.o +%%GBZ80%%share/sdcc/lib/gbz80/_iscntrl.asm +%%GBZ80%%share/sdcc/lib/gbz80/_iscntrl.o +%%GBZ80%%share/sdcc/lib/gbz80/_isdigit.asm +%%GBZ80%%share/sdcc/lib/gbz80/_isdigit.o +%%GBZ80%%share/sdcc/lib/gbz80/_isgraph.asm +%%GBZ80%%share/sdcc/lib/gbz80/_isgraph.o +%%GBZ80%%share/sdcc/lib/gbz80/_islower.asm +%%GBZ80%%share/sdcc/lib/gbz80/_islower.o +%%GBZ80%%share/sdcc/lib/gbz80/_isprint.asm +%%GBZ80%%share/sdcc/lib/gbz80/_isprint.o +%%GBZ80%%share/sdcc/lib/gbz80/_ispunct.asm +%%GBZ80%%share/sdcc/lib/gbz80/_ispunct.o +%%GBZ80%%share/sdcc/lib/gbz80/_isspace.asm +%%GBZ80%%share/sdcc/lib/gbz80/_isspace.o +%%GBZ80%%share/sdcc/lib/gbz80/_isupper.asm +%%GBZ80%%share/sdcc/lib/gbz80/_isupper.o +%%GBZ80%%share/sdcc/lib/gbz80/_isxdigit.asm +%%GBZ80%%share/sdcc/lib/gbz80/_isxdigit.o +%%GBZ80%%share/sdcc/lib/gbz80/_memcmp.asm +%%GBZ80%%share/sdcc/lib/gbz80/_memcmp.o +%%GBZ80%%share/sdcc/lib/gbz80/_memcpy.asm +%%GBZ80%%share/sdcc/lib/gbz80/_memcpy.o +%%GBZ80%%share/sdcc/lib/gbz80/_memmove.asm +%%GBZ80%%share/sdcc/lib/gbz80/_memmove.o +%%GBZ80%%share/sdcc/lib/gbz80/_memset.asm +%%GBZ80%%share/sdcc/lib/gbz80/_memset.o +%%GBZ80%%share/sdcc/lib/gbz80/_modslong.asm +%%GBZ80%%share/sdcc/lib/gbz80/_modslong.o +%%GBZ80%%share/sdcc/lib/gbz80/_modulong.asm +%%GBZ80%%share/sdcc/lib/gbz80/_modulong.o +%%GBZ80%%share/sdcc/lib/gbz80/_mullong.asm +%%GBZ80%%share/sdcc/lib/gbz80/_mullong.o +%%GBZ80%%share/sdcc/lib/gbz80/_schar2fs.asm +%%GBZ80%%share/sdcc/lib/gbz80/_schar2fs.o +%%GBZ80%%share/sdcc/lib/gbz80/_sint2fs.asm +%%GBZ80%%share/sdcc/lib/gbz80/_sint2fs.o +%%GBZ80%%share/sdcc/lib/gbz80/_slong2fs.asm +%%GBZ80%%share/sdcc/lib/gbz80/_slong2fs.o +%%GBZ80%%share/sdcc/lib/gbz80/_startup.asm +%%GBZ80%%share/sdcc/lib/gbz80/_startup.o +%%GBZ80%%share/sdcc/lib/gbz80/_strcat.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strcat.o +%%GBZ80%%share/sdcc/lib/gbz80/_strchr.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strchr.o +%%GBZ80%%share/sdcc/lib/gbz80/_strcmp.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strcmp.o +%%GBZ80%%share/sdcc/lib/gbz80/_strcpy.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strcpy.o +%%GBZ80%%share/sdcc/lib/gbz80/_strcspn.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strcspn.o +%%GBZ80%%share/sdcc/lib/gbz80/_strlen.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strlen.o +%%GBZ80%%share/sdcc/lib/gbz80/_strncat.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strncat.o +%%GBZ80%%share/sdcc/lib/gbz80/_strncmp.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strncmp.o +%%GBZ80%%share/sdcc/lib/gbz80/_strncpy.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strncpy.o +%%GBZ80%%share/sdcc/lib/gbz80/_strpbrk.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strpbrk.o +%%GBZ80%%share/sdcc/lib/gbz80/_strrchr.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strrchr.o +%%GBZ80%%share/sdcc/lib/gbz80/_strspn.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strspn.o +%%GBZ80%%share/sdcc/lib/gbz80/_strstr.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strstr.o +%%GBZ80%%share/sdcc/lib/gbz80/_strtok.asm +%%GBZ80%%share/sdcc/lib/gbz80/_strtok.o +%%GBZ80%%share/sdcc/lib/gbz80/_uchar2fs.asm +%%GBZ80%%share/sdcc/lib/gbz80/_uchar2fs.o +%%GBZ80%%share/sdcc/lib/gbz80/_uint2fs.asm +%%GBZ80%%share/sdcc/lib/gbz80/_uint2fs.o +%%GBZ80%%share/sdcc/lib/gbz80/_ulong2fs.asm +%%GBZ80%%share/sdcc/lib/gbz80/_ulong2fs.o +%%GBZ80%%share/sdcc/lib/gbz80/assert.asm +%%GBZ80%%share/sdcc/lib/gbz80/assert.o +%%GBZ80%%share/sdcc/lib/gbz80/crt0.o +%%GBZ80%%share/sdcc/lib/gbz80/crt0_rle.o +%%GBZ80%%share/sdcc/lib/gbz80/div.o +%%GBZ80%%share/sdcc/lib/gbz80/fstubs.o +%%GBZ80%%share/sdcc/lib/gbz80/gbz80.lib +%%GBZ80%%share/sdcc/lib/gbz80/gets.asm +%%GBZ80%%share/sdcc/lib/gbz80/gets.o +%%GBZ80%%share/sdcc/lib/gbz80/heap.o +%%GBZ80%%share/sdcc/lib/gbz80/malloc.asm +%%GBZ80%%share/sdcc/lib/gbz80/malloc.o +%%GBZ80%%share/sdcc/lib/gbz80/mul.o +%%GBZ80%%share/sdcc/lib/gbz80/printf.o +%%GBZ80%%share/sdcc/lib/gbz80/putchar.o +%%GBZ80%%share/sdcc/lib/gbz80/puts.asm +%%GBZ80%%share/sdcc/lib/gbz80/puts.o +%%GBZ80%%share/sdcc/lib/gbz80/shift.o +%%GBZ80%%share/sdcc/lib/gbz80/stubs.o +%%HC08%%share/sdcc/lib/hc08/_atof.asm +%%HC08%%share/sdcc/lib/hc08/_atof.rel +%%HC08%%share/sdcc/lib/hc08/_atoi.asm +%%HC08%%share/sdcc/lib/hc08/_atoi.rel +%%HC08%%share/sdcc/lib/hc08/_atol.asm +%%HC08%%share/sdcc/lib/hc08/_atol.rel +%%HC08%%share/sdcc/lib/hc08/_divsint.asm +%%HC08%%share/sdcc/lib/hc08/_divsint.rel +%%HC08%%share/sdcc/lib/hc08/_divslong.asm +%%HC08%%share/sdcc/lib/hc08/_divslong.rel +%%HC08%%share/sdcc/lib/hc08/_divuint.rel +%%HC08%%share/sdcc/lib/hc08/_divulong.rel +%%HC08%%share/sdcc/lib/hc08/_fs2schar.asm +%%HC08%%share/sdcc/lib/hc08/_fs2schar.rel +%%HC08%%share/sdcc/lib/hc08/_fs2sint.asm +%%HC08%%share/sdcc/lib/hc08/_fs2sint.rel +%%HC08%%share/sdcc/lib/hc08/_fs2slong.asm +%%HC08%%share/sdcc/lib/hc08/_fs2slong.rel +%%HC08%%share/sdcc/lib/hc08/_fs2uchar.asm +%%HC08%%share/sdcc/lib/hc08/_fs2uchar.rel +%%HC08%%share/sdcc/lib/hc08/_fs2uint.asm +%%HC08%%share/sdcc/lib/hc08/_fs2uint.rel +%%HC08%%share/sdcc/lib/hc08/_fs2ulong.asm +%%HC08%%share/sdcc/lib/hc08/_fs2ulong.rel +%%HC08%%share/sdcc/lib/hc08/_fsadd.asm +%%HC08%%share/sdcc/lib/hc08/_fsadd.rel +%%HC08%%share/sdcc/lib/hc08/_fsdiv.asm +%%HC08%%share/sdcc/lib/hc08/_fsdiv.rel +%%HC08%%share/sdcc/lib/hc08/_fseq.asm +%%HC08%%share/sdcc/lib/hc08/_fseq.rel +%%HC08%%share/sdcc/lib/hc08/_fsgt.asm +%%HC08%%share/sdcc/lib/hc08/_fsgt.rel +%%HC08%%share/sdcc/lib/hc08/_fslt.asm +%%HC08%%share/sdcc/lib/hc08/_fslt.rel +%%HC08%%share/sdcc/lib/hc08/_fsmul.asm +%%HC08%%share/sdcc/lib/hc08/_fsmul.rel +%%HC08%%share/sdcc/lib/hc08/_fsneq.asm +%%HC08%%share/sdcc/lib/hc08/_fsneq.rel +%%HC08%%share/sdcc/lib/hc08/_fssub.asm +%%HC08%%share/sdcc/lib/hc08/_fssub.rel +%%HC08%%share/sdcc/lib/hc08/_iscntrl.asm +%%HC08%%share/sdcc/lib/hc08/_iscntrl.rel +%%HC08%%share/sdcc/lib/hc08/_isdigit.asm +%%HC08%%share/sdcc/lib/hc08/_isdigit.rel +%%HC08%%share/sdcc/lib/hc08/_isgraph.asm +%%HC08%%share/sdcc/lib/hc08/_isgraph.rel +%%HC08%%share/sdcc/lib/hc08/_islower.asm +%%HC08%%share/sdcc/lib/hc08/_islower.rel +%%HC08%%share/sdcc/lib/hc08/_isprint.asm +%%HC08%%share/sdcc/lib/hc08/_isprint.rel +%%HC08%%share/sdcc/lib/hc08/_ispunct.asm +%%HC08%%share/sdcc/lib/hc08/_ispunct.rel +%%HC08%%share/sdcc/lib/hc08/_isspace.asm +%%HC08%%share/sdcc/lib/hc08/_isspace.rel +%%HC08%%share/sdcc/lib/hc08/_isupper.asm +%%HC08%%share/sdcc/lib/hc08/_isupper.rel +%%HC08%%share/sdcc/lib/hc08/_isxdigit.asm +%%HC08%%share/sdcc/lib/hc08/_isxdigit.rel +%%HC08%%share/sdcc/lib/hc08/_itoa.asm +%%HC08%%share/sdcc/lib/hc08/_itoa.rel +%%HC08%%share/sdcc/lib/hc08/_ltoa.asm +%%HC08%%share/sdcc/lib/hc08/_ltoa.rel +%%HC08%%share/sdcc/lib/hc08/_memcmp.asm +%%HC08%%share/sdcc/lib/hc08/_memcmp.rel +%%HC08%%share/sdcc/lib/hc08/_memcpy.asm +%%HC08%%share/sdcc/lib/hc08/_memcpy.rel +%%HC08%%share/sdcc/lib/hc08/_memmove.asm +%%HC08%%share/sdcc/lib/hc08/_memmove.rel +%%HC08%%share/sdcc/lib/hc08/_memset.asm +%%HC08%%share/sdcc/lib/hc08/_memset.rel +%%HC08%%share/sdcc/lib/hc08/_modsint.asm +%%HC08%%share/sdcc/lib/hc08/_modsint.rel +%%HC08%%share/sdcc/lib/hc08/_modslong.asm +%%HC08%%share/sdcc/lib/hc08/_modslong.rel +%%HC08%%share/sdcc/lib/hc08/_moduint.asm +%%HC08%%share/sdcc/lib/hc08/_moduint.rel +%%HC08%%share/sdcc/lib/hc08/_modulong.asm +%%HC08%%share/sdcc/lib/hc08/_modulong.rel +%%HC08%%share/sdcc/lib/hc08/_mulint.rel +%%HC08%%share/sdcc/lib/hc08/_mullong.rel +%%HC08%%share/sdcc/lib/hc08/_ret.rel +%%HC08%%share/sdcc/lib/hc08/_schar2fs.asm +%%HC08%%share/sdcc/lib/hc08/_schar2fs.rel +%%HC08%%share/sdcc/lib/hc08/_sint2fs.asm +%%HC08%%share/sdcc/lib/hc08/_sint2fs.rel +%%HC08%%share/sdcc/lib/hc08/_slong2fs.asm +%%HC08%%share/sdcc/lib/hc08/_slong2fs.rel +%%HC08%%share/sdcc/lib/hc08/_spx.asm +%%HC08%%share/sdcc/lib/hc08/_spx.rel +%%HC08%%share/sdcc/lib/hc08/_startup.asm +%%HC08%%share/sdcc/lib/hc08/_startup.rel +%%HC08%%share/sdcc/lib/hc08/_strcat.asm +%%HC08%%share/sdcc/lib/hc08/_strcat.rel +%%HC08%%share/sdcc/lib/hc08/_strchr.asm +%%HC08%%share/sdcc/lib/hc08/_strchr.rel +%%HC08%%share/sdcc/lib/hc08/_strcmp.asm +%%HC08%%share/sdcc/lib/hc08/_strcmp.rel +%%HC08%%share/sdcc/lib/hc08/_strcpy.asm +%%HC08%%share/sdcc/lib/hc08/_strcpy.rel +%%HC08%%share/sdcc/lib/hc08/_strcspn.asm +%%HC08%%share/sdcc/lib/hc08/_strcspn.rel +%%HC08%%share/sdcc/lib/hc08/_strlen.asm +%%HC08%%share/sdcc/lib/hc08/_strlen.rel +%%HC08%%share/sdcc/lib/hc08/_strncat.asm +%%HC08%%share/sdcc/lib/hc08/_strncat.rel +%%HC08%%share/sdcc/lib/hc08/_strncmp.asm +%%HC08%%share/sdcc/lib/hc08/_strncmp.rel +%%HC08%%share/sdcc/lib/hc08/_strncpy.asm +%%HC08%%share/sdcc/lib/hc08/_strncpy.rel +%%HC08%%share/sdcc/lib/hc08/_strpbrk.asm +%%HC08%%share/sdcc/lib/hc08/_strpbrk.rel +%%HC08%%share/sdcc/lib/hc08/_strrchr.asm +%%HC08%%share/sdcc/lib/hc08/_strrchr.rel +%%HC08%%share/sdcc/lib/hc08/_strspn.asm +%%HC08%%share/sdcc/lib/hc08/_strspn.rel +%%HC08%%share/sdcc/lib/hc08/_strstr.asm +%%HC08%%share/sdcc/lib/hc08/_strstr.rel +%%HC08%%share/sdcc/lib/hc08/_strtok.asm +%%HC08%%share/sdcc/lib/hc08/_strtok.rel +%%HC08%%share/sdcc/lib/hc08/_uchar2fs.asm +%%HC08%%share/sdcc/lib/hc08/_uchar2fs.rel +%%HC08%%share/sdcc/lib/hc08/_uint2fs.asm +%%HC08%%share/sdcc/lib/hc08/_uint2fs.rel +%%HC08%%share/sdcc/lib/hc08/_ulong2fs.asm +%%HC08%%share/sdcc/lib/hc08/_ulong2fs.rel +%%HC08%%share/sdcc/lib/hc08/acosf.asm +%%HC08%%share/sdcc/lib/hc08/acosf.rel +%%HC08%%share/sdcc/lib/hc08/asincosf.asm +%%HC08%%share/sdcc/lib/hc08/asincosf.rel +%%HC08%%share/sdcc/lib/hc08/asinf.asm +%%HC08%%share/sdcc/lib/hc08/asinf.rel +%%HC08%%share/sdcc/lib/hc08/assert.asm +%%HC08%%share/sdcc/lib/hc08/assert.rel +%%HC08%%share/sdcc/lib/hc08/atan2f.asm +%%HC08%%share/sdcc/lib/hc08/atan2f.rel +%%HC08%%share/sdcc/lib/hc08/atanf.asm +%%HC08%%share/sdcc/lib/hc08/atanf.rel +%%HC08%%share/sdcc/lib/hc08/ceilf.asm +%%HC08%%share/sdcc/lib/hc08/ceilf.rel +%%HC08%%share/sdcc/lib/hc08/cosf.asm +%%HC08%%share/sdcc/lib/hc08/cosf.rel +%%HC08%%share/sdcc/lib/hc08/coshf.asm +%%HC08%%share/sdcc/lib/hc08/coshf.rel +%%HC08%%share/sdcc/lib/hc08/cotf.asm +%%HC08%%share/sdcc/lib/hc08/cotf.rel +%%HC08%%share/sdcc/lib/hc08/errno.asm +%%HC08%%share/sdcc/lib/hc08/errno.rel +%%HC08%%share/sdcc/lib/hc08/expf.asm +%%HC08%%share/sdcc/lib/hc08/expf.rel +%%HC08%%share/sdcc/lib/hc08/fabsf.asm +%%HC08%%share/sdcc/lib/hc08/fabsf.rel +%%HC08%%share/sdcc/lib/hc08/floorf.asm +%%HC08%%share/sdcc/lib/hc08/floorf.rel +%%HC08%%share/sdcc/lib/hc08/frexpf.asm +%%HC08%%share/sdcc/lib/hc08/frexpf.rel +%%HC08%%share/sdcc/lib/hc08/hc08.lib +%%HC08%%share/sdcc/lib/hc08/ldexpf.asm +%%HC08%%share/sdcc/lib/hc08/ldexpf.rel +%%HC08%%share/sdcc/lib/hc08/log10f.asm +%%HC08%%share/sdcc/lib/hc08/log10f.rel +%%HC08%%share/sdcc/lib/hc08/logf.asm +%%HC08%%share/sdcc/lib/hc08/logf.rel +%%HC08%%share/sdcc/lib/hc08/malloc.asm +%%HC08%%share/sdcc/lib/hc08/malloc.rel +%%HC08%%share/sdcc/lib/hc08/modff.asm +%%HC08%%share/sdcc/lib/hc08/modff.rel +%%HC08%%share/sdcc/lib/hc08/powf.asm +%%HC08%%share/sdcc/lib/hc08/powf.rel +%%HC08%%share/sdcc/lib/hc08/sincosf.asm +%%HC08%%share/sdcc/lib/hc08/sincosf.rel +%%HC08%%share/sdcc/lib/hc08/sincoshf.asm +%%HC08%%share/sdcc/lib/hc08/sincoshf.rel +%%HC08%%share/sdcc/lib/hc08/sinf.asm +%%HC08%%share/sdcc/lib/hc08/sinf.rel +%%HC08%%share/sdcc/lib/hc08/sinhf.asm +%%HC08%%share/sdcc/lib/hc08/sinhf.rel +%%HC08%%share/sdcc/lib/hc08/sqrtf.asm +%%HC08%%share/sdcc/lib/hc08/sqrtf.rel +%%HC08%%share/sdcc/lib/hc08/tancotf.asm +%%HC08%%share/sdcc/lib/hc08/tancotf.rel +%%HC08%%share/sdcc/lib/hc08/tanf.asm +%%HC08%%share/sdcc/lib/hc08/tanf.rel +%%HC08%%share/sdcc/lib/hc08/tanhf.asm +%%HC08%%share/sdcc/lib/hc08/tanhf.rel +%%HC08%%share/sdcc/lib/hc08/time.asm +%%HC08%%share/sdcc/lib/hc08/time.rel +%%MCS51%%share/sdcc/lib/large/_atof.asm +%%MCS51%%share/sdcc/lib/large/_atof.rel +%%MCS51%%share/sdcc/lib/large/_atoi.asm +%%MCS51%%share/sdcc/lib/large/_atoi.rel +%%MCS51%%share/sdcc/lib/large/_atol.asm +%%MCS51%%share/sdcc/lib/large/_atol.rel +%%MCS51%%share/sdcc/lib/large/_autobaud.asm +%%MCS51%%share/sdcc/lib/large/_autobaud.rel +%%MCS51%%share/sdcc/lib/large/_bp.asm +%%MCS51%%share/sdcc/lib/large/_bp.rel +%%MCS51%%share/sdcc/lib/large/_decdptr.asm +%%MCS51%%share/sdcc/lib/large/_decdptr.rel +%%MCS51%%share/sdcc/lib/large/_divsint.asm +%%MCS51%%share/sdcc/lib/large/_divsint.rel +%%MCS51%%share/sdcc/lib/large/_divslong.asm +%%MCS51%%share/sdcc/lib/large/_divslong.rel +%%MCS51%%share/sdcc/lib/large/_divuint.asm +%%MCS51%%share/sdcc/lib/large/_divuint.rel +%%MCS51%%share/sdcc/lib/large/_divulong.asm +%%MCS51%%share/sdcc/lib/large/_divulong.rel +%%MCS51%%share/sdcc/lib/large/_fs2schar.asm +%%MCS51%%share/sdcc/lib/large/_fs2schar.rel +%%MCS51%%share/sdcc/lib/large/_fs2sint.asm +%%MCS51%%share/sdcc/lib/large/_fs2sint.rel +%%MCS51%%share/sdcc/lib/large/_fs2slong.asm +%%MCS51%%share/sdcc/lib/large/_fs2slong.rel +%%MCS51%%share/sdcc/lib/large/_fs2uchar.asm +%%MCS51%%share/sdcc/lib/large/_fs2uchar.rel +%%MCS51%%share/sdcc/lib/large/_fs2uint.asm +%%MCS51%%share/sdcc/lib/large/_fs2uint.rel +%%MCS51%%share/sdcc/lib/large/_fs2ulong.asm +%%MCS51%%share/sdcc/lib/large/_fs2ulong.rel +%%MCS51%%share/sdcc/lib/large/_fsadd.asm +%%MCS51%%share/sdcc/lib/large/_fsadd.rel +%%MCS51%%share/sdcc/lib/large/_fsdiv.asm +%%MCS51%%share/sdcc/lib/large/_fsdiv.rel +%%MCS51%%share/sdcc/lib/large/_fseq.asm +%%MCS51%%share/sdcc/lib/large/_fseq.rel +%%MCS51%%share/sdcc/lib/large/_fsgt.asm +%%MCS51%%share/sdcc/lib/large/_fsgt.rel +%%MCS51%%share/sdcc/lib/large/_fslt.asm +%%MCS51%%share/sdcc/lib/large/_fslt.rel +%%MCS51%%share/sdcc/lib/large/_fsmul.asm +%%MCS51%%share/sdcc/lib/large/_fsmul.rel +%%MCS51%%share/sdcc/lib/large/_fsneq.asm +%%MCS51%%share/sdcc/lib/large/_fsneq.rel +%%MCS51%%share/sdcc/lib/large/_fssub.asm +%%MCS51%%share/sdcc/lib/large/_fssub.rel +%%MCS51%%share/sdcc/lib/large/_gptrget.asm +%%MCS51%%share/sdcc/lib/large/_gptrget.rel +%%MCS51%%share/sdcc/lib/large/_gptrgetc.asm +%%MCS51%%share/sdcc/lib/large/_gptrgetc.rel +%%MCS51%%share/sdcc/lib/large/_gptrput.asm +%%MCS51%%share/sdcc/lib/large/_gptrput.rel +%%MCS51%%share/sdcc/lib/large/_iscntrl.asm +%%MCS51%%share/sdcc/lib/large/_iscntrl.rel +%%MCS51%%share/sdcc/lib/large/_isdigit.asm +%%MCS51%%share/sdcc/lib/large/_isdigit.rel +%%MCS51%%share/sdcc/lib/large/_isgraph.asm +%%MCS51%%share/sdcc/lib/large/_isgraph.rel +%%MCS51%%share/sdcc/lib/large/_islower.asm +%%MCS51%%share/sdcc/lib/large/_islower.rel +%%MCS51%%share/sdcc/lib/large/_isprint.asm +%%MCS51%%share/sdcc/lib/large/_isprint.rel +%%MCS51%%share/sdcc/lib/large/_ispunct.asm +%%MCS51%%share/sdcc/lib/large/_ispunct.rel +%%MCS51%%share/sdcc/lib/large/_isspace.asm +%%MCS51%%share/sdcc/lib/large/_isspace.rel +%%MCS51%%share/sdcc/lib/large/_isupper.asm +%%MCS51%%share/sdcc/lib/large/_isupper.rel +%%MCS51%%share/sdcc/lib/large/_isxdigit.asm +%%MCS51%%share/sdcc/lib/large/_isxdigit.rel +%%MCS51%%share/sdcc/lib/large/_itoa.asm +%%MCS51%%share/sdcc/lib/large/_itoa.rel +%%MCS51%%share/sdcc/lib/large/_ltoa.asm +%%MCS51%%share/sdcc/lib/large/_ltoa.rel +%%MCS51%%share/sdcc/lib/large/_memcmp.asm +%%MCS51%%share/sdcc/lib/large/_memcmp.rel +%%MCS51%%share/sdcc/lib/large/_memcpy.asm +%%MCS51%%share/sdcc/lib/large/_memcpy.rel +%%MCS51%%share/sdcc/lib/large/_memmove.asm +%%MCS51%%share/sdcc/lib/large/_memmove.rel +%%MCS51%%share/sdcc/lib/large/_memset.asm +%%MCS51%%share/sdcc/lib/large/_memset.rel +%%MCS51%%share/sdcc/lib/large/_modsint.asm +%%MCS51%%share/sdcc/lib/large/_modsint.rel +%%MCS51%%share/sdcc/lib/large/_modslong.asm +%%MCS51%%share/sdcc/lib/large/_modslong.rel +%%MCS51%%share/sdcc/lib/large/_moduint.asm +%%MCS51%%share/sdcc/lib/large/_moduint.rel +%%MCS51%%share/sdcc/lib/large/_modulong.asm +%%MCS51%%share/sdcc/lib/large/_modulong.rel +%%MCS51%%share/sdcc/lib/large/_mulint.asm +%%MCS51%%share/sdcc/lib/large/_mulint.rel +%%MCS51%%share/sdcc/lib/large/_mullong.asm +%%MCS51%%share/sdcc/lib/large/_mullong.rel +%%MCS51%%share/sdcc/lib/large/_schar2fs.asm +%%MCS51%%share/sdcc/lib/large/_schar2fs.rel +%%MCS51%%share/sdcc/lib/large/_ser.asm +%%MCS51%%share/sdcc/lib/large/_ser.rel +%%MCS51%%share/sdcc/lib/large/_setjmp.asm +%%MCS51%%share/sdcc/lib/large/_setjmp.rel +%%MCS51%%share/sdcc/lib/large/_sint2fs.asm +%%MCS51%%share/sdcc/lib/large/_sint2fs.rel +%%MCS51%%share/sdcc/lib/large/_slong2fs.asm +%%MCS51%%share/sdcc/lib/large/_slong2fs.rel +%%MCS51%%share/sdcc/lib/large/_spx.asm +%%MCS51%%share/sdcc/lib/large/_spx.rel +%%MCS51%%share/sdcc/lib/large/_startup.asm +%%MCS51%%share/sdcc/lib/large/_startup.rel +%%MCS51%%share/sdcc/lib/large/_strcat.asm +%%MCS51%%share/sdcc/lib/large/_strcat.rel +%%MCS51%%share/sdcc/lib/large/_strchr.asm +%%MCS51%%share/sdcc/lib/large/_strchr.rel +%%MCS51%%share/sdcc/lib/large/_strcmp.asm +%%MCS51%%share/sdcc/lib/large/_strcmp.rel +%%MCS51%%share/sdcc/lib/large/_strcpy.asm +%%MCS51%%share/sdcc/lib/large/_strcpy.rel +%%MCS51%%share/sdcc/lib/large/_strcspn.asm +%%MCS51%%share/sdcc/lib/large/_strcspn.rel +%%MCS51%%share/sdcc/lib/large/_strlen.asm +%%MCS51%%share/sdcc/lib/large/_strlen.rel +%%MCS51%%share/sdcc/lib/large/_strncat.asm +%%MCS51%%share/sdcc/lib/large/_strncat.rel +%%MCS51%%share/sdcc/lib/large/_strncmp.asm +%%MCS51%%share/sdcc/lib/large/_strncmp.rel +%%MCS51%%share/sdcc/lib/large/_strncpy.asm +%%MCS51%%share/sdcc/lib/large/_strncpy.rel +%%MCS51%%share/sdcc/lib/large/_strpbrk.asm +%%MCS51%%share/sdcc/lib/large/_strpbrk.rel +%%MCS51%%share/sdcc/lib/large/_strrchr.asm +%%MCS51%%share/sdcc/lib/large/_strrchr.rel +%%MCS51%%share/sdcc/lib/large/_strspn.asm +%%MCS51%%share/sdcc/lib/large/_strspn.rel +%%MCS51%%share/sdcc/lib/large/_strstr.asm +%%MCS51%%share/sdcc/lib/large/_strstr.rel +%%MCS51%%share/sdcc/lib/large/_strtok.asm +%%MCS51%%share/sdcc/lib/large/_strtok.rel +%%MCS51%%share/sdcc/lib/large/_uchar2fs.asm +%%MCS51%%share/sdcc/lib/large/_uchar2fs.rel +%%MCS51%%share/sdcc/lib/large/_uint2fs.asm +%%MCS51%%share/sdcc/lib/large/_uint2fs.rel +%%MCS51%%share/sdcc/lib/large/_ulong2fs.asm +%%MCS51%%share/sdcc/lib/large/_ulong2fs.rel +%%MCS51%%share/sdcc/lib/large/acosf.asm +%%MCS51%%share/sdcc/lib/large/acosf.rel +%%MCS51%%share/sdcc/lib/large/asincosf.asm +%%MCS51%%share/sdcc/lib/large/asincosf.rel +%%MCS51%%share/sdcc/lib/large/asinf.asm +%%MCS51%%share/sdcc/lib/large/asinf.rel +%%MCS51%%share/sdcc/lib/large/assert.asm +%%MCS51%%share/sdcc/lib/large/assert.rel +%%MCS51%%share/sdcc/lib/large/atan2f.asm +%%MCS51%%share/sdcc/lib/large/atan2f.rel +%%MCS51%%share/sdcc/lib/large/atanf.asm +%%MCS51%%share/sdcc/lib/large/atanf.rel +%%MCS51%%share/sdcc/lib/large/bpx.asm +%%MCS51%%share/sdcc/lib/large/bpx.rel +%%MCS51%%share/sdcc/lib/large/ceilf.asm +%%MCS51%%share/sdcc/lib/large/ceilf.rel +%%MCS51%%share/sdcc/lib/large/cosf.asm +%%MCS51%%share/sdcc/lib/large/cosf.rel +%%MCS51%%share/sdcc/lib/large/coshf.asm +%%MCS51%%share/sdcc/lib/large/coshf.rel +%%MCS51%%share/sdcc/lib/large/cotf.asm +%%MCS51%%share/sdcc/lib/large/cotf.rel +%%MCS51%%share/sdcc/lib/large/dummy.lib +%%MCS51%%share/sdcc/lib/large/dummy.rel +%%MCS51%%share/sdcc/lib/large/errno.asm +%%MCS51%%share/sdcc/lib/large/errno.rel +%%MCS51%%share/sdcc/lib/large/expf.asm +%%MCS51%%share/sdcc/lib/large/expf.rel +%%MCS51%%share/sdcc/lib/large/fabsf.asm +%%MCS51%%share/sdcc/lib/large/fabsf.rel +%%MCS51%%share/sdcc/lib/large/floorf.asm +%%MCS51%%share/sdcc/lib/large/floorf.rel +%%MCS51%%share/sdcc/lib/large/frexpf.asm +%%MCS51%%share/sdcc/lib/large/frexpf.rel +%%MCS51%%share/sdcc/lib/large/gets.asm +%%MCS51%%share/sdcc/lib/large/gets.rel +%%MCS51%%share/sdcc/lib/large/ldexpf.asm +%%MCS51%%share/sdcc/lib/large/ldexpf.rel +%%MCS51%%share/sdcc/lib/large/libfloat.lib +%%MCS51%%share/sdcc/lib/large/libint.lib +%%MCS51%%share/sdcc/lib/large/liblong.lib +%%MCS51%%share/sdcc/lib/large/libsdcc.lib +%%MCS51%%share/sdcc/lib/large/log10f.asm +%%MCS51%%share/sdcc/lib/large/log10f.rel +%%MCS51%%share/sdcc/lib/large/logf.asm +%%MCS51%%share/sdcc/lib/large/logf.rel +%%MCS51%%share/sdcc/lib/large/malloc.asm +%%MCS51%%share/sdcc/lib/large/malloc.rel +%%MCS51%%share/sdcc/lib/large/modff.asm +%%MCS51%%share/sdcc/lib/large/modff.rel +%%MCS51%%share/sdcc/lib/large/powf.asm +%%MCS51%%share/sdcc/lib/large/powf.rel +%%MCS51%%share/sdcc/lib/large/printf_fast.asm +%%MCS51%%share/sdcc/lib/large/printf_fast.rel +%%MCS51%%share/sdcc/lib/large/printf_large.asm +%%MCS51%%share/sdcc/lib/large/printf_large.rel +%%MCS51%%share/sdcc/lib/large/printfl.asm +%%MCS51%%share/sdcc/lib/large/printfl.rel +%%MCS51%%share/sdcc/lib/large/puts.asm +%%MCS51%%share/sdcc/lib/large/puts.rel +%%MCS51%%share/sdcc/lib/large/ser_ir.asm +%%MCS51%%share/sdcc/lib/large/ser_ir.rel +%%MCS51%%share/sdcc/lib/large/serial.asm +%%MCS51%%share/sdcc/lib/large/serial.rel +%%MCS51%%share/sdcc/lib/large/sincosf.asm +%%MCS51%%share/sdcc/lib/large/sincosf.rel +%%MCS51%%share/sdcc/lib/large/sincoshf.asm +%%MCS51%%share/sdcc/lib/large/sincoshf.rel +%%MCS51%%share/sdcc/lib/large/sinf.asm +%%MCS51%%share/sdcc/lib/large/sinf.rel +%%MCS51%%share/sdcc/lib/large/sinhf.asm +%%MCS51%%share/sdcc/lib/large/sinhf.rel +%%MCS51%%share/sdcc/lib/large/sqrtf.asm +%%MCS51%%share/sdcc/lib/large/sqrtf.rel +%%MCS51%%share/sdcc/lib/large/tancotf.asm +%%MCS51%%share/sdcc/lib/large/tancotf.rel +%%MCS51%%share/sdcc/lib/large/tanf.asm +%%MCS51%%share/sdcc/lib/large/tanf.rel +%%MCS51%%share/sdcc/lib/large/tanhf.asm +%%MCS51%%share/sdcc/lib/large/tanhf.rel +%%MCS51%%share/sdcc/lib/large/time.asm +%%MCS51%%share/sdcc/lib/large/time.rel +%%MCS51%%share/sdcc/lib/large/vprintf.asm +%%MCS51%%share/sdcc/lib/large/vprintf.rel +%%MCS51%%share/sdcc/lib/small/_atof.asm +%%MCS51%%share/sdcc/lib/small/_atof.rel +%%MCS51%%share/sdcc/lib/small/_atoi.asm +%%MCS51%%share/sdcc/lib/small/_atoi.rel +%%MCS51%%share/sdcc/lib/small/_atol.asm +%%MCS51%%share/sdcc/lib/small/_atol.rel +%%MCS51%%share/sdcc/lib/small/_autobaud.asm +%%MCS51%%share/sdcc/lib/small/_autobaud.rel +%%MCS51%%share/sdcc/lib/small/_bp.asm +%%MCS51%%share/sdcc/lib/small/_bp.rel +%%MCS51%%share/sdcc/lib/small/_decdptr.asm +%%MCS51%%share/sdcc/lib/small/_decdptr.rel +%%MCS51%%share/sdcc/lib/small/_divsint.asm +%%MCS51%%share/sdcc/lib/small/_divsint.rel +%%MCS51%%share/sdcc/lib/small/_divslong.asm +%%MCS51%%share/sdcc/lib/small/_divslong.rel +%%MCS51%%share/sdcc/lib/small/_divuint.asm +%%MCS51%%share/sdcc/lib/small/_divuint.rel +%%MCS51%%share/sdcc/lib/small/_divulong.asm +%%MCS51%%share/sdcc/lib/small/_divulong.rel +%%MCS51%%share/sdcc/lib/small/_fs2schar.asm +%%MCS51%%share/sdcc/lib/small/_fs2schar.rel +%%MCS51%%share/sdcc/lib/small/_fs2sint.asm +%%MCS51%%share/sdcc/lib/small/_fs2sint.rel +%%MCS51%%share/sdcc/lib/small/_fs2slong.asm +%%MCS51%%share/sdcc/lib/small/_fs2slong.rel +%%MCS51%%share/sdcc/lib/small/_fs2uchar.asm +%%MCS51%%share/sdcc/lib/small/_fs2uchar.rel +%%MCS51%%share/sdcc/lib/small/_fs2uint.asm +%%MCS51%%share/sdcc/lib/small/_fs2uint.rel +%%MCS51%%share/sdcc/lib/small/_fs2ulong.asm +%%MCS51%%share/sdcc/lib/small/_fs2ulong.rel +%%MCS51%%share/sdcc/lib/small/_fsadd.asm +%%MCS51%%share/sdcc/lib/small/_fsadd.rel +%%MCS51%%share/sdcc/lib/small/_fsdiv.asm +%%MCS51%%share/sdcc/lib/small/_fsdiv.rel +%%MCS51%%share/sdcc/lib/small/_fseq.asm +%%MCS51%%share/sdcc/lib/small/_fseq.rel +%%MCS51%%share/sdcc/lib/small/_fsgt.asm +%%MCS51%%share/sdcc/lib/small/_fsgt.rel +%%MCS51%%share/sdcc/lib/small/_fslt.asm +%%MCS51%%share/sdcc/lib/small/_fslt.rel +%%MCS51%%share/sdcc/lib/small/_fsmul.asm +%%MCS51%%share/sdcc/lib/small/_fsmul.rel +%%MCS51%%share/sdcc/lib/small/_fsneq.asm +%%MCS51%%share/sdcc/lib/small/_fsneq.rel +%%MCS51%%share/sdcc/lib/small/_fssub.asm +%%MCS51%%share/sdcc/lib/small/_fssub.rel +%%MCS51%%share/sdcc/lib/small/_gptrget.asm +%%MCS51%%share/sdcc/lib/small/_gptrget.rel +%%MCS51%%share/sdcc/lib/small/_gptrgetc.asm +%%MCS51%%share/sdcc/lib/small/_gptrgetc.rel +%%MCS51%%share/sdcc/lib/small/_gptrput.asm +%%MCS51%%share/sdcc/lib/small/_gptrput.rel +%%MCS51%%share/sdcc/lib/small/_iscntrl.asm +%%MCS51%%share/sdcc/lib/small/_iscntrl.rel +%%MCS51%%share/sdcc/lib/small/_isdigit.asm +%%MCS51%%share/sdcc/lib/small/_isdigit.rel +%%MCS51%%share/sdcc/lib/small/_isgraph.asm +%%MCS51%%share/sdcc/lib/small/_isgraph.rel +%%MCS51%%share/sdcc/lib/small/_islower.asm +%%MCS51%%share/sdcc/lib/small/_islower.rel +%%MCS51%%share/sdcc/lib/small/_isprint.asm +%%MCS51%%share/sdcc/lib/small/_isprint.rel +%%MCS51%%share/sdcc/lib/small/_ispunct.asm +%%MCS51%%share/sdcc/lib/small/_ispunct.rel +%%MCS51%%share/sdcc/lib/small/_isspace.asm +%%MCS51%%share/sdcc/lib/small/_isspace.rel +%%MCS51%%share/sdcc/lib/small/_isupper.asm +%%MCS51%%share/sdcc/lib/small/_isupper.rel +%%MCS51%%share/sdcc/lib/small/_isxdigit.asm +%%MCS51%%share/sdcc/lib/small/_isxdigit.rel +%%MCS51%%share/sdcc/lib/small/_itoa.asm +%%MCS51%%share/sdcc/lib/small/_itoa.rel +%%MCS51%%share/sdcc/lib/small/_ltoa.asm +%%MCS51%%share/sdcc/lib/small/_ltoa.rel +%%MCS51%%share/sdcc/lib/small/_memcmp.asm +%%MCS51%%share/sdcc/lib/small/_memcmp.rel +%%MCS51%%share/sdcc/lib/small/_memcpy.asm +%%MCS51%%share/sdcc/lib/small/_memcpy.rel +%%MCS51%%share/sdcc/lib/small/_memmove.asm +%%MCS51%%share/sdcc/lib/small/_memmove.rel +%%MCS51%%share/sdcc/lib/small/_memset.asm +%%MCS51%%share/sdcc/lib/small/_memset.rel +%%MCS51%%share/sdcc/lib/small/_modsint.asm +%%MCS51%%share/sdcc/lib/small/_modsint.rel +%%MCS51%%share/sdcc/lib/small/_modslong.asm +%%MCS51%%share/sdcc/lib/small/_modslong.rel +%%MCS51%%share/sdcc/lib/small/_moduint.asm +%%MCS51%%share/sdcc/lib/small/_moduint.rel +%%MCS51%%share/sdcc/lib/small/_modulong.asm +%%MCS51%%share/sdcc/lib/small/_modulong.rel +%%MCS51%%share/sdcc/lib/small/_mulint.asm +%%MCS51%%share/sdcc/lib/small/_mulint.rel +%%MCS51%%share/sdcc/lib/small/_mullong.asm +%%MCS51%%share/sdcc/lib/small/_mullong.rel +%%MCS51%%share/sdcc/lib/small/_schar2fs.asm +%%MCS51%%share/sdcc/lib/small/_schar2fs.rel +%%MCS51%%share/sdcc/lib/small/_ser.asm +%%MCS51%%share/sdcc/lib/small/_ser.rel +%%MCS51%%share/sdcc/lib/small/_setjmp.asm +%%MCS51%%share/sdcc/lib/small/_setjmp.rel +%%MCS51%%share/sdcc/lib/small/_sint2fs.asm +%%MCS51%%share/sdcc/lib/small/_sint2fs.rel +%%MCS51%%share/sdcc/lib/small/_slong2fs.asm +%%MCS51%%share/sdcc/lib/small/_slong2fs.rel +%%MCS51%%share/sdcc/lib/small/_spx.asm +%%MCS51%%share/sdcc/lib/small/_spx.rel +%%MCS51%%share/sdcc/lib/small/_startup.asm +%%MCS51%%share/sdcc/lib/small/_startup.rel +%%MCS51%%share/sdcc/lib/small/_strcat.asm +%%MCS51%%share/sdcc/lib/small/_strcat.rel +%%MCS51%%share/sdcc/lib/small/_strchr.asm +%%MCS51%%share/sdcc/lib/small/_strchr.rel +%%MCS51%%share/sdcc/lib/small/_strcmp.asm +%%MCS51%%share/sdcc/lib/small/_strcmp.rel +%%MCS51%%share/sdcc/lib/small/_strcpy.asm +%%MCS51%%share/sdcc/lib/small/_strcpy.rel +%%MCS51%%share/sdcc/lib/small/_strcspn.asm +%%MCS51%%share/sdcc/lib/small/_strcspn.rel +%%MCS51%%share/sdcc/lib/small/_strlen.asm +%%MCS51%%share/sdcc/lib/small/_strlen.rel +%%MCS51%%share/sdcc/lib/small/_strncat.asm +%%MCS51%%share/sdcc/lib/small/_strncat.rel +%%MCS51%%share/sdcc/lib/small/_strncmp.asm +%%MCS51%%share/sdcc/lib/small/_strncmp.rel +%%MCS51%%share/sdcc/lib/small/_strncpy.asm +%%MCS51%%share/sdcc/lib/small/_strncpy.rel +%%MCS51%%share/sdcc/lib/small/_strpbrk.asm +%%MCS51%%share/sdcc/lib/small/_strpbrk.rel +%%MCS51%%share/sdcc/lib/small/_strrchr.asm +%%MCS51%%share/sdcc/lib/small/_strrchr.rel +%%MCS51%%share/sdcc/lib/small/_strspn.asm +%%MCS51%%share/sdcc/lib/small/_strspn.rel +%%MCS51%%share/sdcc/lib/small/_strstr.asm +%%MCS51%%share/sdcc/lib/small/_strstr.rel +%%MCS51%%share/sdcc/lib/small/_strtok.asm +%%MCS51%%share/sdcc/lib/small/_strtok.rel +%%MCS51%%share/sdcc/lib/small/_uchar2fs.asm +%%MCS51%%share/sdcc/lib/small/_uchar2fs.rel +%%MCS51%%share/sdcc/lib/small/_uint2fs.asm +%%MCS51%%share/sdcc/lib/small/_uint2fs.rel +%%MCS51%%share/sdcc/lib/small/_ulong2fs.asm +%%MCS51%%share/sdcc/lib/small/_ulong2fs.rel +%%MCS51%%share/sdcc/lib/small/acosf.asm +%%MCS51%%share/sdcc/lib/small/acosf.rel +%%MCS51%%share/sdcc/lib/small/asincosf.asm +%%MCS51%%share/sdcc/lib/small/asincosf.rel +%%MCS51%%share/sdcc/lib/small/asinf.asm +%%MCS51%%share/sdcc/lib/small/asinf.rel +%%MCS51%%share/sdcc/lib/small/assert.asm +%%MCS51%%share/sdcc/lib/small/assert.rel +%%MCS51%%share/sdcc/lib/small/atan2f.asm +%%MCS51%%share/sdcc/lib/small/atan2f.rel +%%MCS51%%share/sdcc/lib/small/atanf.asm +%%MCS51%%share/sdcc/lib/small/atanf.rel +%%MCS51%%share/sdcc/lib/small/bpx.asm +%%MCS51%%share/sdcc/lib/small/bpx.rel +%%MCS51%%share/sdcc/lib/small/ceilf.asm +%%MCS51%%share/sdcc/lib/small/ceilf.rel +%%MCS51%%share/sdcc/lib/small/cosf.asm +%%MCS51%%share/sdcc/lib/small/cosf.rel +%%MCS51%%share/sdcc/lib/small/coshf.asm +%%MCS51%%share/sdcc/lib/small/coshf.rel +%%MCS51%%share/sdcc/lib/small/cotf.asm +%%MCS51%%share/sdcc/lib/small/cotf.rel +%%MCS51%%share/sdcc/lib/small/dummy.lib +%%MCS51%%share/sdcc/lib/small/dummy.rel +%%MCS51%%share/sdcc/lib/small/errno.asm +%%MCS51%%share/sdcc/lib/small/errno.rel +%%MCS51%%share/sdcc/lib/small/expf.asm +%%MCS51%%share/sdcc/lib/small/expf.rel +%%MCS51%%share/sdcc/lib/small/fabsf.asm +%%MCS51%%share/sdcc/lib/small/fabsf.rel +%%MCS51%%share/sdcc/lib/small/floorf.asm +%%MCS51%%share/sdcc/lib/small/floorf.rel +%%MCS51%%share/sdcc/lib/small/frexpf.asm +%%MCS51%%share/sdcc/lib/small/frexpf.rel +%%MCS51%%share/sdcc/lib/small/gets.asm +%%MCS51%%share/sdcc/lib/small/gets.rel +%%MCS51%%share/sdcc/lib/small/ldexpf.asm +%%MCS51%%share/sdcc/lib/small/ldexpf.rel +%%MCS51%%share/sdcc/lib/small/libfloat.lib +%%MCS51%%share/sdcc/lib/small/libint.lib +%%MCS51%%share/sdcc/lib/small/liblong.lib +%%MCS51%%share/sdcc/lib/small/libsdcc.lib +%%MCS51%%share/sdcc/lib/small/log10f.asm +%%MCS51%%share/sdcc/lib/small/log10f.rel +%%MCS51%%share/sdcc/lib/small/logf.asm +%%MCS51%%share/sdcc/lib/small/logf.rel +%%MCS51%%share/sdcc/lib/small/malloc.asm +%%MCS51%%share/sdcc/lib/small/malloc.rel +%%MCS51%%share/sdcc/lib/small/modff.asm +%%MCS51%%share/sdcc/lib/small/modff.rel +%%MCS51%%share/sdcc/lib/small/powf.asm +%%MCS51%%share/sdcc/lib/small/powf.rel +%%MCS51%%share/sdcc/lib/small/printf_fast.asm +%%MCS51%%share/sdcc/lib/small/printf_fast.rel +%%MCS51%%share/sdcc/lib/small/printf_large.asm +%%MCS51%%share/sdcc/lib/small/printf_large.rel +%%MCS51%%share/sdcc/lib/small/printfl.asm +%%MCS51%%share/sdcc/lib/small/printfl.rel +%%MCS51%%share/sdcc/lib/small/puts.asm +%%MCS51%%share/sdcc/lib/small/puts.rel +%%MCS51%%share/sdcc/lib/small/ser_ir.asm +%%MCS51%%share/sdcc/lib/small/ser_ir.rel +%%MCS51%%share/sdcc/lib/small/serial.asm +%%MCS51%%share/sdcc/lib/small/serial.rel +%%MCS51%%share/sdcc/lib/small/sincosf.asm +%%MCS51%%share/sdcc/lib/small/sincosf.rel +%%MCS51%%share/sdcc/lib/small/sincoshf.asm +%%MCS51%%share/sdcc/lib/small/sincoshf.rel +%%MCS51%%share/sdcc/lib/small/sinf.asm +%%MCS51%%share/sdcc/lib/small/sinf.rel +%%MCS51%%share/sdcc/lib/small/sinhf.asm +%%MCS51%%share/sdcc/lib/small/sinhf.rel +%%MCS51%%share/sdcc/lib/small/sqrtf.asm +%%MCS51%%share/sdcc/lib/small/sqrtf.rel +%%MCS51%%share/sdcc/lib/small/tancotf.asm +%%MCS51%%share/sdcc/lib/small/tancotf.rel +%%MCS51%%share/sdcc/lib/small/tanf.asm +%%MCS51%%share/sdcc/lib/small/tanf.rel +%%MCS51%%share/sdcc/lib/small/tanhf.asm +%%MCS51%%share/sdcc/lib/small/tanhf.rel +%%MCS51%%share/sdcc/lib/small/time.asm +%%MCS51%%share/sdcc/lib/small/time.rel +%%MCS51%%share/sdcc/lib/small/vprintf.asm +%%MCS51%%share/sdcc/lib/small/vprintf.rel +share/sdcc/lib/src/_atof.c +share/sdcc/lib/src/_atoi.c +share/sdcc/lib/src/_atol.c +share/sdcc/lib/src/_autobaud.c +share/sdcc/lib/src/_bp.c +share/sdcc/lib/src/_decdptr.c +share/sdcc/lib/src/_divsint.c +share/sdcc/lib/src/_divslong.c +share/sdcc/lib/src/_divuint.c +share/sdcc/lib/src/_divulong.c +share/sdcc/lib/src/_fs2schar.c +share/sdcc/lib/src/_fs2sint.c +share/sdcc/lib/src/_fs2slong.c +share/sdcc/lib/src/_fs2uchar.c +share/sdcc/lib/src/_fs2uint.c +share/sdcc/lib/src/_fs2ulong.c +share/sdcc/lib/src/_fsadd.c +share/sdcc/lib/src/_fsdiv.c +share/sdcc/lib/src/_fseq.c +share/sdcc/lib/src/_fsgt.c +share/sdcc/lib/src/_fslt.c +share/sdcc/lib/src/_fsmul.c +share/sdcc/lib/src/_fsneq.c +share/sdcc/lib/src/_fssub.c +share/sdcc/lib/src/_gptrget.c +share/sdcc/lib/src/_gptrgetc.c +share/sdcc/lib/src/_gptrput.c +share/sdcc/lib/src/_iscntrl.c +share/sdcc/lib/src/_isdigit.c +share/sdcc/lib/src/_isgraph.c +share/sdcc/lib/src/_islower.c +share/sdcc/lib/src/_isprint.c +share/sdcc/lib/src/_ispunct.c +share/sdcc/lib/src/_isspace.c +share/sdcc/lib/src/_isupper.c +share/sdcc/lib/src/_isxdigit.c +share/sdcc/lib/src/_itoa.c +share/sdcc/lib/src/_ltoa.c +share/sdcc/lib/src/_memcmp.c +share/sdcc/lib/src/_memcpy.c +share/sdcc/lib/src/_memmove.c +share/sdcc/lib/src/_memset.c +share/sdcc/lib/src/_modsint.c +share/sdcc/lib/src/_modslong.c +share/sdcc/lib/src/_moduint.c +share/sdcc/lib/src/_modulong.c +share/sdcc/lib/src/_mulint.c +share/sdcc/lib/src/_mullong.c +share/sdcc/lib/src/_schar2fs.c +share/sdcc/lib/src/_ser.c +share/sdcc/lib/src/_setjmp.c +share/sdcc/lib/src/_sint2fs.c +share/sdcc/lib/src/_slong2fs.c +share/sdcc/lib/src/_spx.c +share/sdcc/lib/src/_startup.c +share/sdcc/lib/src/_strcat.c +share/sdcc/lib/src/_strchr.c +share/sdcc/lib/src/_strcmp.c +share/sdcc/lib/src/_strcpy.c +share/sdcc/lib/src/_strcspn.c +share/sdcc/lib/src/_strlen.c +share/sdcc/lib/src/_strncat.c +share/sdcc/lib/src/_strncmp.c +share/sdcc/lib/src/_strncpy.c +share/sdcc/lib/src/_strpbrk.c +share/sdcc/lib/src/_strrchr.c +share/sdcc/lib/src/_strspn.c +share/sdcc/lib/src/_strstr.c +share/sdcc/lib/src/_strtok.c +share/sdcc/lib/src/_uchar2fs.c +share/sdcc/lib/src/_uint2fs.c +share/sdcc/lib/src/_ulong2fs.c +share/sdcc/lib/src/acosf.c +share/sdcc/lib/src/asincosf.c +share/sdcc/lib/src/asinf.c +share/sdcc/lib/src/assert.c +share/sdcc/lib/src/atan2f.c +share/sdcc/lib/src/atanf.c +share/sdcc/lib/src/bpx.c +share/sdcc/lib/src/ceilf.c +share/sdcc/lib/src/cosf.c +share/sdcc/lib/src/coshf.c +share/sdcc/lib/src/cotf.c +share/sdcc/lib/src/ds390/Makefile +share/sdcc/lib/src/ds390/Makefile.dep +share/sdcc/lib/src/ds390/examples/MOVED +share/sdcc/lib/src/ds390/i2c390.c +share/sdcc/lib/src/ds390/lcd390.c +share/sdcc/lib/src/ds390/libds390.lib +share/sdcc/lib/src/ds390/memcpyx.c +share/sdcc/lib/src/ds390/rtc390.c +share/sdcc/lib/src/ds390/tinibios.c +share/sdcc/lib/src/ds400/Makefile +share/sdcc/lib/src/ds400/Makefile.dep +share/sdcc/lib/src/ds400/ds400rom.c +share/sdcc/lib/src/ds400/libds400.lib +share/sdcc/lib/src/ds400/memcpyx.c +share/sdcc/lib/src/ds400/tinibios.c +share/sdcc/lib/src/errno.c +share/sdcc/lib/src/expf.c +share/sdcc/lib/src/fabsf.c +share/sdcc/lib/src/floorf.c +share/sdcc/lib/src/frexpf.c +share/sdcc/lib/src/gbz80/Makefile +share/sdcc/lib/src/gbz80/README +share/sdcc/lib/src/gbz80/asm_strings.s +share/sdcc/lib/src/gbz80/crt0.s +share/sdcc/lib/src/gbz80/crt0_rle.s +share/sdcc/lib/src/gbz80/div.s +share/sdcc/lib/src/gbz80/fstubs.s +share/sdcc/lib/src/gbz80/gbz80.lib +share/sdcc/lib/src/gbz80/heap.s +share/sdcc/lib/src/gbz80/mul.s +share/sdcc/lib/src/gbz80/printf.c +share/sdcc/lib/src/gbz80/putchar.s +share/sdcc/lib/src/gbz80/shift.s +share/sdcc/lib/src/gbz80/string.c +share/sdcc/lib/src/gbz80/stubs.s +share/sdcc/lib/src/gets.c +share/sdcc/lib/src/hc08/Makefile +share/sdcc/lib/src/hc08/_divuint.c +share/sdcc/lib/src/hc08/_divulong.c +share/sdcc/lib/src/hc08/_mulint.c +share/sdcc/lib/src/hc08/_mullong.c +share/sdcc/lib/src/hc08/_ret.c +share/sdcc/lib/src/hc08/hc08.lib +share/sdcc/lib/src/ldexpf.c +share/sdcc/lib/src/log10f.c +share/sdcc/lib/src/logf.c +share/sdcc/lib/src/malloc.c +share/sdcc/lib/src/modff.c +share/sdcc/lib/src/powf.c +share/sdcc/lib/src/printf_fast.c +share/sdcc/lib/src/printf_large.c +share/sdcc/lib/src/printfl.c +share/sdcc/lib/src/puts.c +share/sdcc/lib/src/ser_ir.c +share/sdcc/lib/src/ser_ir_cts_rts.c +share/sdcc/lib/src/serial.c +share/sdcc/lib/src/sincosf.c +share/sdcc/lib/src/sincoshf.c +share/sdcc/lib/src/sinf.c +share/sdcc/lib/src/sinhf.c +share/sdcc/lib/src/sqrtf.c +share/sdcc/lib/src/tancotf.c +share/sdcc/lib/src/tanf.c +share/sdcc/lib/src/tanhf.c +share/sdcc/lib/src/time.c +share/sdcc/lib/src/vprintf.c +share/sdcc/lib/src/z80/Makefile +share/sdcc/lib/src/z80/README +share/sdcc/lib/src/z80/asm_strings.s +share/sdcc/lib/src/z80/crt0.s +share/sdcc/lib/src/z80/crt0_rle.s +share/sdcc/lib/src/z80/div.s +share/sdcc/lib/src/z80/fstubs.s +share/sdcc/lib/src/z80/heap.s +share/sdcc/lib/src/z80/mul.s +share/sdcc/lib/src/z80/printf.c +share/sdcc/lib/src/z80/putchar.s +share/sdcc/lib/src/z80/shift.s +share/sdcc/lib/src/z80/string.c +share/sdcc/lib/src/z80/stubs.s +share/sdcc/lib/src/z80/z80.lib +%%Z80%%share/sdcc/lib/z80/_atof.asm +%%Z80%%share/sdcc/lib/z80/_atof.o +%%Z80%%share/sdcc/lib/z80/_atoi.asm +%%Z80%%share/sdcc/lib/z80/_atoi.o +%%Z80%%share/sdcc/lib/z80/_divslong.asm +%%Z80%%share/sdcc/lib/z80/_divslong.o +%%Z80%%share/sdcc/lib/z80/_divulong.asm +%%Z80%%share/sdcc/lib/z80/_divulong.o +%%Z80%%share/sdcc/lib/z80/_fs2schar.asm +%%Z80%%share/sdcc/lib/z80/_fs2schar.o +%%Z80%%share/sdcc/lib/z80/_fs2sint.asm +%%Z80%%share/sdcc/lib/z80/_fs2sint.o +%%Z80%%share/sdcc/lib/z80/_fs2slong.asm +%%Z80%%share/sdcc/lib/z80/_fs2slong.o +%%Z80%%share/sdcc/lib/z80/_fs2uchar.asm +%%Z80%%share/sdcc/lib/z80/_fs2uchar.o +%%Z80%%share/sdcc/lib/z80/_fs2uint.asm +%%Z80%%share/sdcc/lib/z80/_fs2uint.o +%%Z80%%share/sdcc/lib/z80/_fs2ulong.asm +%%Z80%%share/sdcc/lib/z80/_fs2ulong.o +%%Z80%%share/sdcc/lib/z80/_fsadd.asm +%%Z80%%share/sdcc/lib/z80/_fsadd.o +%%Z80%%share/sdcc/lib/z80/_fsdiv.asm +%%Z80%%share/sdcc/lib/z80/_fsdiv.o +%%Z80%%share/sdcc/lib/z80/_fseq.asm +%%Z80%%share/sdcc/lib/z80/_fseq.o +%%Z80%%share/sdcc/lib/z80/_fsgt.asm +%%Z80%%share/sdcc/lib/z80/_fsgt.o +%%Z80%%share/sdcc/lib/z80/_fslt.asm +%%Z80%%share/sdcc/lib/z80/_fslt.o +%%Z80%%share/sdcc/lib/z80/_fsmul.asm +%%Z80%%share/sdcc/lib/z80/_fsmul.o +%%Z80%%share/sdcc/lib/z80/_fsneq.asm +%%Z80%%share/sdcc/lib/z80/_fsneq.o +%%Z80%%share/sdcc/lib/z80/_fssub.asm +%%Z80%%share/sdcc/lib/z80/_fssub.o +%%Z80%%share/sdcc/lib/z80/_iscntrl.asm +%%Z80%%share/sdcc/lib/z80/_iscntrl.o +%%Z80%%share/sdcc/lib/z80/_isdigit.asm +%%Z80%%share/sdcc/lib/z80/_isdigit.o +%%Z80%%share/sdcc/lib/z80/_isgraph.asm +%%Z80%%share/sdcc/lib/z80/_isgraph.o +%%Z80%%share/sdcc/lib/z80/_islower.asm +%%Z80%%share/sdcc/lib/z80/_islower.o +%%Z80%%share/sdcc/lib/z80/_isprint.asm +%%Z80%%share/sdcc/lib/z80/_isprint.o +%%Z80%%share/sdcc/lib/z80/_ispunct.asm +%%Z80%%share/sdcc/lib/z80/_ispunct.o +%%Z80%%share/sdcc/lib/z80/_isspace.asm +%%Z80%%share/sdcc/lib/z80/_isspace.o +%%Z80%%share/sdcc/lib/z80/_isupper.asm +%%Z80%%share/sdcc/lib/z80/_isupper.o +%%Z80%%share/sdcc/lib/z80/_isxdigit.asm +%%Z80%%share/sdcc/lib/z80/_isxdigit.o +%%Z80%%share/sdcc/lib/z80/_memcmp.asm +%%Z80%%share/sdcc/lib/z80/_memcmp.o +%%Z80%%share/sdcc/lib/z80/_memcpy.asm +%%Z80%%share/sdcc/lib/z80/_memcpy.o +%%Z80%%share/sdcc/lib/z80/_memmove.asm +%%Z80%%share/sdcc/lib/z80/_memmove.o +%%Z80%%share/sdcc/lib/z80/_memset.asm +%%Z80%%share/sdcc/lib/z80/_memset.o +%%Z80%%share/sdcc/lib/z80/_modslong.asm +%%Z80%%share/sdcc/lib/z80/_modslong.o +%%Z80%%share/sdcc/lib/z80/_modulong.asm +%%Z80%%share/sdcc/lib/z80/_modulong.o +%%Z80%%share/sdcc/lib/z80/_mullong.asm +%%Z80%%share/sdcc/lib/z80/_mullong.o +%%Z80%%share/sdcc/lib/z80/_schar2fs.asm +%%Z80%%share/sdcc/lib/z80/_schar2fs.o +%%Z80%%share/sdcc/lib/z80/_sint2fs.asm +%%Z80%%share/sdcc/lib/z80/_sint2fs.o +%%Z80%%share/sdcc/lib/z80/_slong2fs.asm +%%Z80%%share/sdcc/lib/z80/_slong2fs.o +%%Z80%%share/sdcc/lib/z80/_startup.asm +%%Z80%%share/sdcc/lib/z80/_startup.o +%%Z80%%share/sdcc/lib/z80/_strcat.asm +%%Z80%%share/sdcc/lib/z80/_strcat.o +%%Z80%%share/sdcc/lib/z80/_strchr.asm +%%Z80%%share/sdcc/lib/z80/_strchr.o +%%Z80%%share/sdcc/lib/z80/_strcmp.asm +%%Z80%%share/sdcc/lib/z80/_strcmp.o +%%Z80%%share/sdcc/lib/z80/_strcpy.asm +%%Z80%%share/sdcc/lib/z80/_strcpy.o +%%Z80%%share/sdcc/lib/z80/_strcspn.asm +%%Z80%%share/sdcc/lib/z80/_strcspn.o +%%Z80%%share/sdcc/lib/z80/_strlen.asm +%%Z80%%share/sdcc/lib/z80/_strlen.o +%%Z80%%share/sdcc/lib/z80/_strncat.asm +%%Z80%%share/sdcc/lib/z80/_strncat.o +%%Z80%%share/sdcc/lib/z80/_strncmp.asm +%%Z80%%share/sdcc/lib/z80/_strncmp.o +%%Z80%%share/sdcc/lib/z80/_strncpy.asm +%%Z80%%share/sdcc/lib/z80/_strncpy.o +%%Z80%%share/sdcc/lib/z80/_strpbrk.asm +%%Z80%%share/sdcc/lib/z80/_strpbrk.o +%%Z80%%share/sdcc/lib/z80/_strrchr.asm +%%Z80%%share/sdcc/lib/z80/_strrchr.o +%%Z80%%share/sdcc/lib/z80/_strspn.asm +%%Z80%%share/sdcc/lib/z80/_strspn.o +%%Z80%%share/sdcc/lib/z80/_strstr.asm +%%Z80%%share/sdcc/lib/z80/_strstr.o +%%Z80%%share/sdcc/lib/z80/_strtok.asm +%%Z80%%share/sdcc/lib/z80/_strtok.o +%%Z80%%share/sdcc/lib/z80/_uchar2fs.asm +%%Z80%%share/sdcc/lib/z80/_uchar2fs.o +%%Z80%%share/sdcc/lib/z80/_uint2fs.asm +%%Z80%%share/sdcc/lib/z80/_uint2fs.o +%%Z80%%share/sdcc/lib/z80/_ulong2fs.asm +%%Z80%%share/sdcc/lib/z80/_ulong2fs.o +%%Z80%%share/sdcc/lib/z80/assert.asm +%%Z80%%share/sdcc/lib/z80/assert.o +%%Z80%%share/sdcc/lib/z80/crt0.o +%%Z80%%share/sdcc/lib/z80/crt0_rle.o +%%Z80%%share/sdcc/lib/z80/div.o +%%Z80%%share/sdcc/lib/z80/fstubs.o +%%Z80%%share/sdcc/lib/z80/gets.asm +%%Z80%%share/sdcc/lib/z80/gets.o +%%Z80%%share/sdcc/lib/z80/heap.o +%%Z80%%share/sdcc/lib/z80/malloc.asm +%%Z80%%share/sdcc/lib/z80/malloc.o +%%Z80%%share/sdcc/lib/z80/mul.o +%%Z80%%share/sdcc/lib/z80/printf.o +%%Z80%%share/sdcc/lib/z80/putchar.o +%%Z80%%share/sdcc/lib/z80/puts.asm +%%Z80%%share/sdcc/lib/z80/puts.o +%%Z80%%share/sdcc/lib/z80/shift.o +%%Z80%%share/sdcc/lib/z80/stubs.o +%%Z80%%share/sdcc/lib/z80/z80.lib +%%Z80%%@dirrm share/sdcc/lib/z80 +@exec mkdir %D/share/sdcc/lib/pic16 +@dirrm share/sdcc/lib/src/z80 +@dirrm share/sdcc/lib/src/hc08 +@dirrm share/sdcc/lib/src/gbz80 +@dirrm share/sdcc/lib/src/ds400 +@dirrm share/sdcc/lib/src/ds390/examples +@dirrm share/sdcc/lib/src/ds390 +@dirrm share/sdcc/lib/src +@dirrm share/sdcc/lib/small +@dirrm share/sdcc/lib/pic16 +@dirrm share/sdcc/lib/large +@dirrm share/sdcc/lib/hc08 +%%GBZ80%%@dirrm share/sdcc/lib/gbz80 +@dirrm share/sdcc/lib/ds400 +@dirrm share/sdcc/lib/ds390 +@dirrm share/sdcc/lib +@dirrm share/sdcc/include/pic16 +@dirrm share/sdcc/include/asm/z80 +@dirrm share/sdcc/include/asm/gbz80 +@dirrm share/sdcc/include/asm/default +@dirrm share/sdcc/include/asm +@dirrm share/sdcc/include +@dirrm share/sdcc/doc/z80 +%%UCSIM%%@dirrm share/sdcc/doc/ucsim +@dirrm share/sdcc/doc/avr +@dirrm share/sdcc/doc/aslink +@dirrm share/sdcc/doc +@dirrm share/sdcc |