Files
cc65/libsrc/rp6502/open.c
2025-09-26 17:19:50 -07:00

19 lines
379 B
C

#include <rp6502.h>
#include <errno.h>
#include <string.h>
#include <fcntl.h>
int __cdecl__ open (const char* name, int flags, ...)
{
size_t namelen = strlen (name);
if (namelen > 255) {
errno = EINVAL;
return -1;
}
while (namelen) {
ria_push_char (name[--namelen]);
}
ria_set_ax (flags);
return ria_call_int (RIA_OP_OPEN);
}