mirror of
				https://github.com/YosysHQ/sby.git
				synced 2025-10-31 13:02:28 +00:00 
			
		
		
		
	* Rename and move sbysrc/demo[123].sby to docs/examples/demos
    * Make them use multiple tasks for multiple engines
* Scan docs/examples for sby files for make test
* `make ci` is now `NOSKIP` by default
* Skip scripts using `verific` w/o yosys verific support
    * This does not fail even with NOSKIP set
		
	
			
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| [tasks]
 | |
| yices
 | |
| boolector
 | |
| z3
 | |
| abc
 | |
| 
 | |
| [options]
 | |
| mode bmc
 | |
| depth 10
 | |
| 
 | |
| [engines]
 | |
| yices: smtbmc yices
 | |
| boolector: smtbmc boolector -ack
 | |
| z3: smtbmc --nomem z3
 | |
| abc: abc bmc3
 | |
| 
 | |
| [script]
 | |
| read_verilog -formal -norestrict -assume-asserts picorv32.v
 | |
| read_verilog -formal axicheck.v
 | |
| prep -top testbench
 | |
| 
 | |
| [files]
 | |
| picorv32.v ../../../extern/picorv32.v
 | |
| axicheck.v ../../../extern/axicheck.v
 | |
| 
 |