mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +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
|
||
|
|