mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 11:42:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			263 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			263 B
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| 
 | |
| with open("techlibs/gowin/bram_init_16.vh", "w") as f:
 | |
|     for i in range(0, 0x40):
 | |
|         low = i << 8
 | |
|         hi = ((i+1) << 8)-1
 | |
|         snippet = "INIT[%d:%d]" % (hi, low)
 | |
|         print(".INIT_RAM_%02X({%s})," % (i, snippet), file=f)
 |