mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	Added Altera Quartus support to xsthammer
This commit is contained in:
		
							parent
							
								
									28539541ed
								
							
						
					
					
						commit
						be1fca3428
					
				
					 3 changed files with 39 additions and 2 deletions
				
			
		
							
								
								
									
										24
									
								
								tests/xsthammer/run-quartus.sh
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								tests/xsthammer/run-quartus.sh
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,24 @@
 | 
			
		|||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
if [ $# -eq 0 ]; then
 | 
			
		||||
	echo "Usage: $0 <job_id>" >&2
 | 
			
		||||
	exit 1
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
job="$1"
 | 
			
		||||
set --
 | 
			
		||||
 | 
			
		||||
set -e
 | 
			
		||||
mkdir -p quartus quartus_temp/$job
 | 
			
		||||
cd quartus_temp/$job
 | 
			
		||||
 | 
			
		||||
rm -rf *
 | 
			
		||||
cp ../../rtl/$job.v .
 | 
			
		||||
/opt/altera/13.0/quartus/bin/quartus_map $job --source=$job.v --family="Cyclone III" 
 | 
			
		||||
/opt/altera/13.0/quartus/bin/quartus_fit $job
 | 
			
		||||
/opt/altera/13.0/quartus/bin/quartus_eda $job --formal_verification --tool=conformal
 | 
			
		||||
cp -v fv/conformal/$job.vo ../../quartus/$job.v
 | 
			
		||||
 | 
			
		||||
sync
 | 
			
		||||
exit 0
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue