diff options
Diffstat (limited to 'newlib/libc/sys')
-rw-r--r-- | newlib/libc/sys/h8300hms/crt0.S | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/newlib/libc/sys/h8300hms/crt0.S b/newlib/libc/sys/h8300hms/crt0.S index a2137ad3a..257896449 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: |