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

Made <conio.h> include <atari5200.h> when we compile for the Atari 5200 console.

atari5200.lib has some conio functions.
This commit is contained in:
Greg King 2017-09-10 12:27:57 -04:00
parent 308f74561c
commit 5802b0963f

View File

@ -63,6 +63,8 @@
# include <apple2enh.h>
#elif defined(__APPLE2__)
# include <apple2.h>
#elif defined(__ATARI5200__)
# include <atari5200.h>
#elif defined(__ATARI__)
# include <atari.h>
#elif defined(__ATMOS__)
@ -225,6 +227,3 @@ void __fastcall__ cputhex16 (unsigned val);
/* End of conio.h */
#endif