summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/h8300hms/write.S
blob: e416b1521be677b529c79f41a9568345b49c40f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;ssize_t write(int fd, const void *buf, size_t count);
;Integer arguments have to be zero extended.

#include "setarch.h"

	.section .text
	.align 2
	.global __write
__write:
#if defined(__H8300H__) || defined(__H8300S__) || defined (__H8300SX__)
#if __INT_MAX__ == 32767
	extu.l	er0
#endif
#endif
	jsr @@0xc7
	rts
	.end