mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 22:30:12 +00:00
12 lines
270 B
C
12 lines
270 B
C
#include <rp6502.h>
|
|
|
|
int __fastcall__ write_xstack (const void* buf, unsigned count, int fildes)
|
|
{
|
|
unsigned i;
|
|
for (i = count; i;) {
|
|
ria_push_char (((char*)buf)[--i]);
|
|
}
|
|
ria_set_ax (fildes);
|
|
return ria_call_int_errno (RIA_OP_WRITE_XSTACK);
|
|
}
|