mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 02:09:19 +08:00
41a639dea8
* libc/sys/h8300hms/Makefile.am: Add support for new files. * libc/sys/h8300hms/Makefile.in: Regenerated. * libc/sys/h8300hms/close.S: New file. * libc/sys/h8300hms/fstat.S: Ditto. * libc/sys/h8300hms/lseek.S: Ditto. * libc/sys/h8300hms/open.S: Ditto. * libc/sys/h8300hms/stat.S: Ditto. * libc/sys/h8300hms/read.S: New file to replace read.c. * libc/sys/h8300hms/read.c: Removed. * libc/sys/h8300hms/syscalls.c: Removed functions _open, _lseek, _close, _stat, _fstat. * libc/sys/h8300hms/write.S: New file to replace write.c. * libc/sys/h8300hms/write.c: Removed.
24 lines
356 B
ArmAsm
24 lines
356 B
ArmAsm
;ssize_t write(int fd, const void *buf, size_t count);
|
|
;Integer arguments have to be zero extended.
|
|
|
|
#if defined(__H8300H__)
|
|
.h8300h
|
|
#endif
|
|
|
|
#if defined(__H8300S__)
|
|
.h8300s
|
|
#endif
|
|
|
|
.section .text
|
|
.align 2
|
|
.global __write
|
|
__write:
|
|
#if defined(__H8300H__) || defined(__H8300S__)
|
|
#if __INT_MAX__ == 32767
|
|
extu.l er0
|
|
#endif
|
|
#endif
|
|
jsr @@0xc7
|
|
rts
|
|
.end
|