mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			278 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			278 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "header.h"
 | 
						|
 | 
						|
int main(){
 | 
						|
  //int res = icache_spill_test();
 | 
						|
  global_hist_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;
 | 
						|
  }
 | 
						|
}
 |