diff options
author | David McCullough <davidm@snapgear.com> | 2003-04-29 14:46:31 +0000 |
---|---|---|
committer | David McCullough <davidm@snapgear.com> | 2003-04-29 14:46:31 +0000 |
commit | dd7edf2e66c25b0af951a0685e8a7f0f161dc564 (patch) | |
tree | c7ef88d3de494ec0ee1c975f696b17594f968d83 /libc/sysdeps/linux/h8300/crt0.S | |
parent | 416799ee539e356c3a4bc86485ffb502077ef9fd (diff) |
Some small fixups for the h8 support and add the h8s platform support.
Diffstat (limited to 'libc/sysdeps/linux/h8300/crt0.S')
-rw-r--r-- | libc/sysdeps/linux/h8300/crt0.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/h8300/crt0.S b/libc/sysdeps/linux/h8300/crt0.S index a4f862797..b94551b9d 100644 --- a/libc/sysdeps/linux/h8300/crt0.S +++ b/libc/sysdeps/linux/h8300/crt0.S @@ -24,7 +24,11 @@ Cambridge, MA 02139, USA. */ .global atexit .global main +#ifdef __H8300S__ + .h8300s +#else .h8300h +#endif .text _start: /* put here so that references to _start work with elf-PIC */ |