style update and add rp6502 doc
This commit is contained in:
@@ -1,19 +1,11 @@
|
||||
/*
|
||||
* Copyright (c) 2023 Rumbledethumps
|
||||
*
|
||||
* SPDX-License-Identifier: Zlib
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
* SPDX-License-Identifier: Unlicense
|
||||
*/
|
||||
|
||||
#include <rp6502.h>
|
||||
#include <unistd.h>
|
||||
|
||||
off_t __fastcall__ lseek(int fd, off_t offset, int whence)
|
||||
off_t __fastcall__ lseek (int fd, off_t offset, int whence)
|
||||
{
|
||||
/* Modified argument order for short stacking offset */
|
||||
ria_push_long(offset);
|
||||
ria_push_char(whence);
|
||||
ria_set_ax(fd);
|
||||
return ria_call_long_errno(RIA_OP_LSEEK);
|
||||
ria_push_long (offset);
|
||||
ria_push_char (whence);
|
||||
ria_set_ax (fd);
|
||||
return ria_call_long_errno (RIA_OP_LSEEK);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user