23 lines
320 B
ArmAsm
23 lines
320 B
ArmAsm
|
;int close(int fd);
|
||
|
;Integer arguments have to be zero extended.
|
||
|
|
||
|
#if defined(__H8300H__)
|
||
|
.h8300h
|
||
|
#endif
|
||
|
#if defined(__H8300S__)
|
||
|
.h8300s
|
||
|
#endif
|
||
|
|
||
|
.section .text
|
||
|
.align 2
|
||
|
.global __close
|
||
|
__close:
|
||
|
#if defined(__H8300H__) || defined(__H8300S__)
|
||
|
#if __INT_MAX__ == 32767
|
||
|
extu.l er0
|
||
|
#endif
|
||
|
#endif
|
||
|
jsr @@0xc9
|
||
|
rts
|
||
|
.end
|