cvw/tests/custom/cacheTest/main.c

11 lines
157 B
C
Raw Normal View History

2022-12-18 23:15:08 +00:00
#include "header.h"
int main(){
long int array [1024];
int index;
for(index = 0; index < 1024; index++) {
array[index] = index;
}
return 0;
}