mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 22:30:12 +00:00
10 lines
214 B
C
10 lines
214 B
C
|
|
#include <rp6502.h>
|
|
|
|
int __fastcall__ stdin_opt (unsigned long ctrl_bits, unsigned char str_length)
|
|
{
|
|
ria_push_long (ctrl_bits);
|
|
ria_set_a (str_length);
|
|
return ria_call_int_errno (RIA_OP_STDIN_OPT);
|
|
}
|