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
This commit is contained in:
parent
468960eed8
commit
82095e79cf
|
@ -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__.
|
||||
|
|
|
@ -1,11 +1,19 @@
|
|||
#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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,11 +1,19 @@
|
|||
.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
|
||||
|
|
|
@ -1,11 +1,19 @@
|
|||
#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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue