]> git.sur5r.net Git - cc65/blob - libsrc/telestrat/oserror.s
37c9bd7fca29cb99779d8b8634f7148d342940bc
[cc65] / libsrc / telestrat / oserror.s
1 ;
2 ; Stefan Haubenthal, 2011-04-18
3 ;
4 ; int __fastcall__ _osmaperrno (unsigned char oserror);
5 ; /* Map a system specific error into a system independent code */
6 ;
7
8         .include        "errno.inc"
9         .export         __osmaperrno
10
11 .proc   __osmaperrno
12
13         lda     #<EUNKNOWN
14         ldx     #>EUNKNOWN
15         rts
16
17 .endproc