mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
13 lines
158 B
ArmAsm
13 lines
158 B
ArmAsm
;int stat(const char *file_name, struct stat *buf);
|
|
|
|
#include "setarch.h"
|
|
|
|
.section .text
|
|
.align 2
|
|
.global __stat
|
|
__stat:
|
|
jsr @@0xca
|
|
rts
|
|
.end
|
|
|