mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 21:32:19 +00:00
18 lines
324 B
ArmAsm
18 lines
324 B
ArmAsm
;
|
|
; Jede, 2017-10-27
|
|
;
|
|
; int __fastcall__ __osmaperrno (unsigned char oserror);
|
|
; /* Map a system specific error into a system independent code */
|
|
;
|
|
|
|
.include "errno.inc"
|
|
.export ___osmaperrno
|
|
|
|
.proc ___osmaperrno
|
|
|
|
lda #<EUNKNOWN
|
|
ldx #>EUNKNOWN
|
|
rts
|
|
|
|
.endproc
|