home *** CD-ROM | disk | FTP | other *** search
- *** 1.67 1992/03/06 19:19:47
- --- Changelo 1992/03/10 15:18:36
- ***************
- *** 2854,2856 ****
- --- 2854,2862 ----
- make mktemp() more MiNT friendly by using pid when __mint.
-
- ---------------------------- Patchlevel 76 ---------------------------
- +
- + memcpy.s:: ++jrb
- + in the upcopy loop setup for the oddeven case, the count was being
- + moved with a movw instead of movl.
- +
- + ---------------------------- Patchlevel 77 ---------------------------
- *** 1.52 1992/03/06 19:19:47
- --- PatchLev.h 1992/03/10 15:18:38
- ***************
- *** 1,5 ****
-
- ! #define PatchLevel "76"
-
- /*
- *
- --- 1,5 ----
-
- ! #define PatchLevel "77"
-
- /*
- *
- *** 1.28 1992/03/06 19:19:47
- --- makefile.16 1992/03/10 15:19:03
- ***************
- *** 9,24 ****
- LIB = d:\gnu\lib
-
- # common subset of options; no int size or omit-frame-pointer:
- ! COPTS= -O -fstrength-reduce -DNDEBUG $(XFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS) -mshort
-
- # normal CFLAGS including int size and omit-frame-pointer
- ! CFLAGS= $(CFFLAGS) -fomit-frame-pointer
-
- # cflags for stuff that needs to be compiled with 32 bit ints
- ! CLFLAGS= $(COPTS) -DSHORTLIB -fomit-frame-pointer
-
- # flags to $(CC) when it runs the assembler only
- ASFLAGS= -c
- --- 9,24 ----
- LIB = d:\gnu\lib
-
- # common subset of options; no int size or omit-frame-pointer:
- ! COPTS= -O2 -fstrength-reduce -DNDEBUG $(XFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS) -mshort
-
- # normal CFLAGS including int size and omit-frame-pointer
- ! CFLAGS= $(CFFLAGS) # -fomit-frame-pointer
-
- # cflags for stuff that needs to be compiled with 32 bit ints
- ! CLFLAGS= $(COPTS) -DSHORTLIB # -fomit-frame-pointer
-
- # flags to $(CC) when it runs the assembler only
- ASFLAGS= -c
- *** 1.27 1992/03/06 19:19:47
- --- makefile.32 1992/03/10 15:19:03
- ***************
- *** 9,21 ****
- LIB = d:\gnu\lib
-
- # common subset of options; no int size or omit-frame-pointer:
- ! COPTS= -O -fstrength-reduce -DNDEBUG $(XFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS)
-
- # normal CFLAGS including int size and omit-frame-pointer
- ! CFLAGS= $(CFFLAGS) -fomit-frame-pointer
-
- # cflags for stuff that needs to be compiled with 32 bit ints
- CLFLAGS= $(CFLAGS)
- --- 9,21 ----
- LIB = d:\gnu\lib
-
- # common subset of options; no int size or omit-frame-pointer:
- ! COPTS= -O2 -fstrength-reduce -DNDEBUG $(XFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS)
-
- # normal CFLAGS including int size and omit-frame-pointer
- ! CFLAGS= $(CFFLAGS) # -fomit-frame-pointer
-
- # cflags for stuff that needs to be compiled with 32 bit ints
- CLFLAGS= $(CFLAGS)
- *** 1.1 1992/03/06 19:19:47
- --- memcpy.s 1992/03/10 15:19:04
- ***************
- *** 71,77 ****
- return: rts
-
- oddeven:
- ! movw d0,d1
- swap d1
- jra upbra
- upcopy: | byte-by-byte forward
- --- 71,77 ----
- return: rts
-
- oddeven:
- ! movl d0,d1
- swap d1
- jra upbra
- upcopy: | byte-by-byte forward
-