]> git.sur5r.net Git - cc65/blob - libsrc/osic1p/oserror.s
Consistent naming for screen dimension constants.
[cc65] / libsrc / osic1p / oserror.s
1 ;
2 ; dummy implementation for Challenger 1P based on atmos implementation
3 ;
4 ; original by
5 ; Stefan Haubenthal, 2011-04-18
6 ;
7 ; int __fastcall__ _osmaperrno (unsigned char oserror);
8 ; /* Map a system specific error into a system independent code */
9 ;
10
11         .include        "errno.inc"
12         .export         __osmaperrno
13
14 .proc   __osmaperrno
15
16         lda     #<EUNKNOWN
17         ldx     #>EUNKNOWN
18         rts
19
20 .endproc