]> git.sur5r.net Git - cc65/blob - testcode/lib/atari/defdev.c
initial check-in
[cc65] / testcode / lib / atari / defdev.c
1 /*
2  * testprogram printing the default device
3  *
4  * 26-Nov-2009, Christian Groessler
5  */
6
7 #include <stdio.h>
8 #include <conio.h>
9 #include <atari.h>
10
11 extern char _defdev[];
12
13 int main(void)
14 {
15         printf("default device: %s\n", _defdev);
16         if (_dos_type != SPARTADOS && _dos_type != OSADOS) cgetc();
17         return 0;
18 }