mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			282 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			282 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # check for warnings in Verilog code
 | |
| # The verilator lint tool is faster and better than Modelsim so it is best to run this first.
 | |
| export PATH=$PATH:/usr/local/bin/
 | |
| verilator=`which verilator`
 | |
| 
 | |
| basepath=$(dirname $0)/..
 | |
| $verilator --lint-only --top-module fma16 fma16.v
 |