Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stat.S « h8300hms « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4ce3ff379a18a6b481f90969d3a2fd76d092fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;int stat(const char *file_name, struct stat *buf);

#if defined(__H8300H__)
	.h8300h
#endif
#if defined(__H8300S__)
	.h8300s
#endif

	.section .text
	.align 2
	.global __stat
__stat:
	jsr @@0xca
	rts
	.end