mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-29 18:52:30 +00:00 
			
		
		
		
	Moved the last files out of the resources directory. Some tidy up/reformatting of the extensions to allow literalincludes from `my_cmd.cc`. Most (all?) of the getting started guidelines file is either in the quick guide section, or sections referenced by it. Instead of including it verbatim, we'll instead just leave a reference to it but then jump straight into the quick guide. Include an image for the absval generated module. Still needs more surrounding text but it's good enough for now. Also includes some other minor tidying, including removing the no longer used abc_01 code example.
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			363 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			363 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
 | |
| TARGETS += proc_01 proc_02 proc_03
 | |
| TARGETS += opt_01 opt_02 opt_03 opt_04
 | |
| TARGETS += memory_01 memory_02
 | |
| TARGETS += techmap_01
 | |
| 
 | |
| PROGRAM_PREFIX :=
 | |
| 
 | |
| YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
 | |
| 
 | |
| DOTS = $(addsuffix .dot,$(TARGETS))
 | |
| 
 | |
| dots: $(DOTS)
 | |
| 
 | |
| %.dot: %.v %.ys
 | |
| 	$(YOSYS) -p 'script $*.ys; show -notitle -prefix $* -format dot'
 | |
| 
 | |
| .PHONY: clean
 | |
| clean:
 | |
| 	rm -f *.dot
 | |
| 
 |