mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
98c47d1877
The target 'atarixl' is to be used for Atari XL (and better) machines. It will disable the OS ROM and enable the Shadow RAM available on those machine. Note: This commit is only the inital step towards for this goal that just replicates the target 'atari' as a starting point!
25 lines
416 B
C
25 lines
416 B
C
/*
|
|
* simple clock test
|
|
*
|
|
* 06-Nov-2001, Christian Groessler
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <conio.h>
|
|
#include <time.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("\ncc65 time routines test program\n");
|
|
printf("-------------------------------\n");
|
|
|
|
printf("clocks per second: %d\n", CLOCKS_PER_SEC);
|
|
printf("current clock: %ld\n", clock());
|
|
|
|
printf("hit <return> to exit...");
|
|
cgetc();
|
|
printf("\n");
|
|
return(0);
|
|
}
|
|
|