Files
cc65/libsrc/rp6502/f_lseek.c
rumbledethumps f744f0b8a0 dir seeking
2025-10-15 14:12:12 -07:00

10 lines
211 B
C

#include <rp6502.h>
long __fastcall__ f_lseek (long offset, int whence, int fildes)
{
ria_set_ax (fildes);
ria_push_long (offset);
ria_push_char (whence);
return ria_call_long (RIA_OP_LSEEK);
}