mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
20 lines
319 B
C
20 lines
319 B
C
/*
|
|
** testprogram printing the default device
|
|
**
|
|
** 26-Nov-2009, Christian Groessler
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <conio.h>
|
|
#include <atari.h>
|
|
#include <cc65.h>
|
|
|
|
extern char _defdev[];
|
|
|
|
int main(void)
|
|
{
|
|
printf("default device: %s\n", _defdev);
|
|
if (doesclrscrafterexit()) cgetc();
|
|
return 0;
|
|
}
|