all dir commands

This commit is contained in:
rumbledethumps
2025-10-16 16:20:23 -07:00
parent 815135f716
commit 4b561acea5
5 changed files with 77 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
#include <rp6502.h>
#include <errno.h>
#include <string.h>
int __fastcall__ f_setlabel (const char* name)
{
size_t namelen = strlen (name);
if (namelen > 255) {
errno = EINVAL;
return -1;
}
while (namelen) {
ria_push_char (name[--namelen]);
}
return ria_call_int (RIA_OP_SETLABEL);
}