forked from Github_Repos/cvw
Have a basic cache test to fill all ways and sets.
This commit is contained in:
parent
376b01fcb8
commit
b4229c01ca
@ -1,10 +1,11 @@
|
||||
#include "header.h"
|
||||
|
||||
int main(){
|
||||
int main(int argc, char *argv[]){
|
||||
long int array [1024];
|
||||
int index;
|
||||
for(index = 0; index < 1024; index++) {
|
||||
array[index] = index;
|
||||
}
|
||||
return 0;
|
||||
*argv = array;
|
||||
return array[1023] + argc;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user