]> git.sur5r.net Git - cc65/blob - libsrc/telemon24/oserror.s
Correcting spaces
[cc65] / libsrc / telemon24 / 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