aboutsummaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-05-28 18:00:17 +0000
committerJeff Johnston <jjohnstn@redhat.com>2003-05-28 18:00:17 +0000
commit82095e79cf4e14221ff3fc72a2a80cbc4d3b5871 (patch)
tree2a47b1f046d229bf8bcadfd45509a615b162f75f /newlib
parent468960eed8420d06103be6eb2f660d23d6911a64 (diff)
downloadnewlib-82095e79cf4e14221ff3fc72a2a80cbc4d3b5871.zip
newlib-82095e79cf4e14221ff3fc72a2a80cbc4d3b5871.tar.gz
newlib-82095e79cf4e14221ff3fc72a2a80cbc4d3b5871.tar.bz2
2003-05-28 Dhananjay Deshpande <dhananjayd@kpitcummins.com>
* newlib/libc/machine/h8300/memcpy.S: Use .h8300hn and .h8300sn for normal mode * newlib/libc/machine/h8300/memset.S: Likewise * newlib/lib/machine/h8300/reg_memcpy.S: Likewise * newlib/lib/machine/h8300/reg_memset.S: Likewise * newlib/lib/machine/h8300/setjmp.S: Likewise * newlib/lib/machine/h8300/strcmp.S: Likewise * newlib/lib/sys/h8300hms/crt0.S: Likewise
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog11
-rw-r--r--newlib/libc/machine/h8300/memcpy.S8
-rw-r--r--newlib/libc/machine/h8300/memset.S8
-rw-r--r--newlib/libc/machine/h8300/reg_memcpy.S8
-rw-r--r--newlib/libc/machine/h8300/reg_memset.S8
-rw-r--r--newlib/libc/machine/h8300/setjmp.S8
-rw-r--r--newlib/libc/machine/h8300/strcmp.S8
-rw-r--r--newlib/libc/sys/h8300hms/crt0.S9
8 files changed, 67 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index d321a6f..03db5e1 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,14 @@
+2003-05-28 Dhananjay Deshpande <dhananjayd@kpitcummins.com>
+
+ * newlib/libc/machine/h8300/memcpy.S: Use .h8300hn and .h8300sn for
+ normal mode
+ * newlib/libc/machine/h8300/memset.S: Likewise
+ * newlib/lib/machine/h8300/reg_memcpy.S: Likewise
+ * newlib/lib/machine/h8300/reg_memset.S: Likewise
+ * newlib/lib/machine/h8300/setjmp.S: Likewise
+ * newlib/lib/machine/h8300/strcmp.S: Likewise
+ * newlib/lib/sys/h8300hms/crt0.S: Likewise
+
2003-05-13 Corinna Vinschen <corinna@vinschen.de>
* libc/ctype/ctype_.c: Remove checks for deprecated __CYGWIN32__.
diff --git a/newlib/libc/machine/h8300/memcpy.S b/newlib/libc/machine/h8300/memcpy.S
index 3465ce5..759ce30 100644
--- a/newlib/libc/machine/h8300/memcpy.S
+++ b/newlib/libc/machine/h8300/memcpy.S
@@ -1,12 +1,20 @@
#include "defines.h"
#ifdef __H8300H__
+#ifdef __NORMAL_MODE__
+ .h8300hn
+#else
.h8300h
#endif
+#endif
#ifdef __H8300S__
+#ifdef __NORMAL_MODE__
+ .h8300sn
+#else
.h8300s
#endif
+#endif
.global _memcpy
_memcpy:
diff --git a/newlib/libc/machine/h8300/memset.S b/newlib/libc/machine/h8300/memset.S
index c12f17b..a056a10 100644
--- a/newlib/libc/machine/h8300/memset.S
+++ b/newlib/libc/machine/h8300/memset.S
@@ -1,12 +1,20 @@
#include "defines.h"
#ifdef __H8300H__
+#ifdef __NORMAL_MODE__
+ .h8300hn
+#else
.h8300h
#endif
+#endif
#ifdef __H8300S__
+#ifdef __NORMAL_MODE__
+ .h8300sn
+#else
.h8300s
#endif
+#endif
; A0P pointer to cursor
diff --git a/newlib/libc/machine/h8300/reg_memcpy.S b/newlib/libc/machine/h8300/reg_memcpy.S
index 772a43c..6189369 100644
--- a/newlib/libc/machine/h8300/reg_memcpy.S
+++ b/newlib/libc/machine/h8300/reg_memcpy.S
@@ -1,12 +1,20 @@
#include "defines.h"
#ifdef __H8300H__
+#ifdef __NORMAL_MODE__
+ .h8300hn
+#else
.h8300h
#endif
+#endif
#ifdef __H8300S__
+#ifdef __NORMAL_MODE__
+ .h8300sn
+#else
.h8300s
#endif
+#endif
; dst A0
diff --git a/newlib/libc/machine/h8300/reg_memset.S b/newlib/libc/machine/h8300/reg_memset.S
index 8e58c5e..e490e7b 100644
--- a/newlib/libc/machine/h8300/reg_memset.S
+++ b/newlib/libc/machine/h8300/reg_memset.S
@@ -1,12 +1,20 @@
#include "defines.h"
#ifdef __H8300H__
+#ifdef __NORMAL_MODE__
+ .h8300hn
+#else
.h8300h
#endif
+#endif
#ifdef __H8300S__
+#ifdef __NORMAL_MODE__
+ .h8300sn
+#else
.h8300s
#endif
+#endif
; dst A0
diff --git a/newlib/libc/machine/h8300/setjmp.S b/newlib/libc/machine/h8300/setjmp.S
index 5c44973..c51c986 100644
--- a/newlib/libc/machine/h8300/setjmp.S
+++ b/newlib/libc/machine/h8300/setjmp.S
@@ -1,12 +1,20 @@
.file "setjmp.S"
#ifdef __H8300H__
+#ifdef __NORMAL_MODE__
+ .h8300hn
+#else
.h8300h
#endif
+#endif
#ifdef __H8300S__
+#ifdef __NORMAL_MODE__
+ .h8300sn
+#else
.h8300s
#endif
+#endif
.section .text
.align 2
diff --git a/newlib/libc/machine/h8300/strcmp.S b/newlib/libc/machine/h8300/strcmp.S
index 8dec7c0..f735fb8 100644
--- a/newlib/libc/machine/h8300/strcmp.S
+++ b/newlib/libc/machine/h8300/strcmp.S
@@ -1,12 +1,20 @@
#include "defines.h"
#ifdef __H8300H__
+#ifdef __NORMAL_MODE__
+ .h8300hn
+#else
.h8300h
#endif
+#endif
#ifdef __H8300S__
+#ifdef __NORMAL_MODE__
+ .h8300sn
+#else
.h8300s
#endif
+#endif
.section .text
.align 2
diff --git a/newlib/libc/sys/h8300hms/crt0.S b/newlib/libc/sys/h8300hms/crt0.S
index a2137ad..2578964 100644
--- a/newlib/libc/sys/h8300hms/crt0.S
+++ b/newlib/libc/sys/h8300hms/crt0.S
@@ -36,7 +36,11 @@ _stack: .word 1
#ifdef __H8300H__
+#ifdef __NORMAL_MODE__
+ .h8300hn
+#else
.h8300h
+#endif
.section .text
.global _start
_start:
@@ -70,8 +74,11 @@ _stack: .long 1
#endif
#ifdef __H8300S__
-
+#ifdef __NORMAL_MODE__
+ .h8300sn
+#else
.h8300s
+#endif
.section .text
.global _start
_start: