mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
15 lines
203 B
ArmAsm
15 lines
203 B
ArmAsm
|
;
|
||
|
; Karri Kaksonen, 2010
|
||
|
;
|
||
|
; int __fastcall__ _osmaperrno (unsigned char oserror);
|
||
|
; /* Map a system specific error into a system independent code */
|
||
|
;
|
||
|
|
||
|
.include "errno.inc"
|
||
|
|
||
|
.code
|
||
|
|
||
|
__osmaperrno:
|
||
|
rts
|
||
|
|