remove oserror from rp6502

This commit is contained in:
rumbledethumps
2025-09-26 17:19:50 -07:00
parent b5ff68a952
commit fdcb890bfd
24 changed files with 85 additions and 229 deletions

View File

@@ -5,7 +5,7 @@ int __fastcall__ read_xstack (void* buf, unsigned count, int fildes)
int i, ax;
ria_push_int (count);
ria_set_ax (fildes);
ax = ria_call_int_errno (RIA_OP_READ_XSTACK);
ax = ria_call_int (RIA_OP_READ_XSTACK);
for (i = 0; i < ax; i++) {
((char*)buf)[i] = ria_pop_char ();
}