From e9a90940b18f97af5ca6b0db131982019f1c70a6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stephan=20M=C3=BChlstrasser?= Date: Sun, 30 Nov 2014 21:05:36 +0100 Subject: [PATCH] Dummy implementation for osmapperrno Copied from atmos implementation --- libsrc/c1p/oserror.s | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 libsrc/c1p/oserror.s 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 -- 2.39.5