rename testcode/ to targettest/

This commit is contained in:
mrdudz
2020-09-29 19:14:46 +02:00
parent dcee493e94
commit 4777e98f57
82 changed files with 0 additions and 0 deletions

24
targettest/clock.c Normal file
View File

@@ -0,0 +1,24 @@
/*
** 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);
}