1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

keep the old names (w/o "_") of get_ostype() and get_tv() for cross

platform compatibility


git-svn-id: svn://svn.cc65.org/cc65/trunk@3149 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2004-07-09 19:27:12 +00:00
parent bb9d07430f
commit 6ac5c407cf

View File

@ -142,10 +142,10 @@ extern void __fastcall__ _scroll (signed char numlines);
/* numlines < 0 scrolls down */
/* misc. functions */
extern unsigned char get_ostype(void); /* get ROM version */
extern unsigned char get_tv(void); /* get TV system */
extern void _save_vecs(void); /* save system vectors */
extern void _rest_vecs(void); /* restore system vectors */
extern unsigned char _get_ostype(void); /* get ROM version */
extern unsigned char _get_tv(void); /* get TV system */
extern char *_getdefdev(void); /* get default floppy device */
/* global variables */
@ -160,8 +160,6 @@ extern unsigned char _dos_type; /* the DOS flavour */
#define scroll _scroll
#define save_vecs _save_vecs
#define rest_vecs _rest_vecs
#define get_ostype _get_ostype
#define get_tv _get_tv
#define getdefdev _getdefdev
#endif /* #ifdef ATARI_COMPAT_PRE_2_11 */