2009-11-26 18:19:35 +00:00
|
|
|
/*
|
2014-06-30 09:10:35 +00:00
|
|
|
** testprogram printing the default device
|
|
|
|
**
|
|
|
|
** 26-Nov-2009, Christian Groessler
|
|
|
|
*/
|
2009-11-26 18:19:35 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <conio.h>
|
|
|
|
#include <atari.h>
|
2016-06-07 10:05:28 +00:00
|
|
|
#include <cc65.h>
|
2009-11-26 18:19:35 +00:00
|
|
|
|
|
|
|
extern char _defdev[];
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2013-05-09 11:56:54 +00:00
|
|
|
printf("default device: %s\n", _defdev);
|
2016-06-06 22:42:51 +00:00
|
|
|
if (doesclrscrafterexit()) cgetc();
|
2013-05-09 11:56:54 +00:00
|
|
|
return 0;
|
2009-11-26 18:19:35 +00:00
|
|
|
}
|