From: Stephan Mühlstrasser Date: Sun, 30 Nov 2014 20:05:36 +0000 (+0100) Subject: Dummy implementation for osmapperrno X-Git-Tag: V2.15~22^2~31 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e9a90940b18f97af5ca6b0db131982019f1c70a6;p=cc65 Dummy implementation for osmapperrno Copied from atmos implementation --- diff --git a/libsrc/c1p/oserror.s b/libsrc/c1p/oserror.s new file mode 100644 index 000000000..073691a06 --- /dev/null +++ b/libsrc/c1p/oserror.s @@ -0,0 +1,20 @@ +; +; dummy implementation for Challenger 1P based on atmos implementation +; +; original by +; 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 + rts + +.endproc