mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
e673b53850
git-svn-id: svn://svn.cc65.org/cc65/trunk@4732 b7a2c559-68d2-44c3-8de9-860c34a00d81
13 lines
252 B
ArmAsm
13 lines
252 B
ArmAsm
;
|
|
; __do_oserror updates __oserror and errno. Do a JMP here right after
|
|
; calling CIOV. It will return with AX set to -1 ($FFFF). It expects the CIO
|
|
; status in Y.
|
|
;
|
|
.include "errno.inc"
|
|
|
|
.export __do_oserror
|
|
|
|
__do_oserror:
|
|
tya
|
|
jmp __mappederrno
|