mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Have a basic cache test to fill all ways and sets.
This commit is contained in:
parent
7a352edf13
commit
e8c1d14abb
@ -1,10 +1,11 @@
|
|||||||
#include "header.h"
|
#include "header.h"
|
||||||
|
|
||||||
int main(){
|
int main(int argc, char *argv[]){
|
||||||
long int array [1024];
|
long int array [1024];
|
||||||
int index;
|
int index;
|
||||||
for(index = 0; index < 1024; index++) {
|
for(index = 0; index < 1024; index++) {
|
||||||
array[index] = index;
|
array[index] = index;
|
||||||
}
|
}
|
||||||
return 0;
|
*argv = array;
|
||||||
|
return array[1023] + argc;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user