mirror of
https://github.com/cc65/cc65.git
synced 2024-11-17 09:07:32 +00:00
06fddaf11f
git-svn-id: svn://svn.cc65.org/cc65/trunk@5013 b7a2c559-68d2-44c3-8de9-860c34a00d81
18 lines
275 B
ArmAsm
18 lines
275 B
ArmAsm
;
|
|
; Stefan Haubenthal, 2011-04-18
|
|
;
|
|
; 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
|