mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 13:34:28 +00:00
22 lines
382 B
C
22 lines
382 B
C
|
#include "header.h"
|
||
|
|
||
|
int main(){
|
||
|
//int res = icache_spill_test();
|
||
|
global_hist_3_space_test();
|
||
|
global_hist_2_space_test();
|
||
|
global_hist_1_space_test();
|
||
|
global_hist_0_space_test();
|
||
|
int res = 1;
|
||
|
if (res < 0) {
|
||
|
fail();
|
||
|
return 0;
|
||
|
}else {
|
||
|
if((res = lbu_test()) < 0) {
|
||
|
fail();
|
||
|
return 0;
|
||
|
}
|
||
|
res = simple_csrbr_test();
|
||
|
return 0;
|
||
|
}
|
||
|
}
|