mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
15 lines
268 B
ArmAsm
15 lines
268 B
ArmAsm
|
;int open(const char *pathname, int flags);
|
||
|
;Integer arguments have to be zero extended.
|
||
|
;The second argument is taken from the stack,
|
||
|
;hence it is not zero extended here.
|
||
|
|
||
|
#include "setarch.h"
|
||
|
|
||
|
.section .text
|
||
|
.align 2
|
||
|
.global __open
|
||
|
__open:
|
||
|
jsr @@0xc5
|
||
|
rts
|
||
|
.end
|