mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-03 21:09:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			234 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			234 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -e
 | 
						|
for x in *.v; do
 | 
						|
  echo "Running $x.."
 | 
						|
  ../../yosys -q -s check_map.ys -l ${x%.v}.log $x
 | 
						|
done
 | 
						|
 | 
						|
for x in map_cmp.v; do
 | 
						|
  echo "Running $x.."
 | 
						|
  ../../yosys -q -s check_map_lut6.ys -l ${x%.v}_lut6.log $x
 | 
						|
done
 |