mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			5 lines
		
	
	
	
		
			158 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
	
		
			158 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -ex
 | 
						|
../../yosys -p 'synth -top test; write_simplec -verbose -i8 test00_uut.c' test00_uut.v
 | 
						|
clang -o test00_tb test00_tb.c
 | 
						|
./test00_tb
 |