mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	By operating at a layer of abstraction over the rather clumsy Intel primitives, we can avoid special hacks like `dffinit -highlow` in favour of simple techmapping. This also makes the primitives much easier to manipulate, and more descriptive (no more cyclonev_lcell_comb to mean anything from a LUT2 to a LUT6).
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			450 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			450 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -e
 | 
						|
{
 | 
						|
echo "all::"
 | 
						|
for x in *.ys; do
 | 
						|
	echo "all:: run-$x"
 | 
						|
	echo "run-$x:"
 | 
						|
	echo "	@echo 'Running $x..'"
 | 
						|
	echo "	@../../../yosys -ql ${x%.ys}.log -w 'Yosys has only limited support for tri-state logic at the moment.' $x"
 | 
						|
done
 | 
						|
for s in *.sh; do
 | 
						|
	if [ "$s" != "run-test.sh" ]; then
 | 
						|
		echo "all:: run-$s"
 | 
						|
		echo "run-$s:"
 | 
						|
		echo "	@echo 'Running $s..'"
 | 
						|
		echo "	@bash $s"
 | 
						|
	fi
 | 
						|
done
 | 
						|
} > run-test.mk
 | 
						|
exec ${MAKE:-make} -f run-test.mk
 |