chdir and friends

This commit is contained in:
rumbledethumps
2025-10-15 23:41:44 -07:00
parent f744f0b8a0
commit 815135f716
7 changed files with 110 additions and 0 deletions

21
libsrc/rp6502/f_utime.c Normal file
View File

@@ -0,0 +1,21 @@
#include <rp6502.h>
#include <errno.h>
#include <string.h>
int __fastcall__ f_utime (const char* path, unsigned fdate, unsigned ftime, unsigned crdate, unsigned crtime)
{
size_t pathlen;
ria_set_ax (crtime);
pathlen = strlen (path);
if (pathlen > 255) {
errno = EINVAL;
return -1;
}
while (pathlen) {
ria_push_char (path[--pathlen]);
}
ria_push_int (fdate);
ria_push_int (ftime);
ria_push_int (crdate);
return ria_call_int (RIA_OP_UTIME);
}