mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 11:42:30 +00:00 
			
		
		
		
	Covers most of the todo list, at least functionally. Some minor issues with not always using hardware features.
		
			
				
	
	
		
			76 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| ram block \RAM_CLOCK_SDP {
 | |
| 	cost 64;
 | |
| 	abits 10;
 | |
| 	widths 1 2 4 8 16 per_port;
 | |
| 	init any;
 | |
| 	port sw "W" {
 | |
| 		ifdef SHARED_CLK {
 | |
| 			ifdef WCLK_ANY {
 | |
| 				option "WCLK" "ANY" {
 | |
| 					clock anyedge "CLK";
 | |
| 				}
 | |
| 			}
 | |
| 			ifdef WCLK_POS {
 | |
| 				option "WCLK" "POS" {
 | |
| 					clock posedge "CLK";
 | |
| 				}
 | |
| 			}
 | |
| 			ifdef WCLK_NEG {
 | |
| 				option "WCLK" "NEG" {
 | |
| 					clock negedge "CLK";
 | |
| 				}
 | |
| 			}
 | |
| 		} else {
 | |
| 			ifdef WCLK_ANY {
 | |
| 				option "WCLK" "ANY" {
 | |
| 					clock anyedge;
 | |
| 				}
 | |
| 			}
 | |
| 			ifdef WCLK_POS {
 | |
| 				option "WCLK" "POS" {
 | |
| 					clock posedge;
 | |
| 				}
 | |
| 			}
 | |
| 			ifdef WCLK_NEG {
 | |
| 				option "WCLK" "NEG" {
 | |
| 					clock negedge;
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	port sr "R" {
 | |
| 		ifdef SHARED_CLK {
 | |
| 			ifdef RCLK_ANY {
 | |
| 				option "RCLK" "ANY" {
 | |
| 					clock anyedge "CLK";
 | |
| 				}
 | |
| 			}
 | |
| 			ifdef RCLK_POS {
 | |
| 				option "RCLK" "POS" {
 | |
| 					clock posedge "CLK";
 | |
| 				}
 | |
| 			}
 | |
| 			ifdef RCLK_NEG {
 | |
| 				option "RCLK" "NEG" {
 | |
| 					clock negedge "CLK";
 | |
| 				}
 | |
| 			}
 | |
| 		} else {
 | |
| 			ifdef RCLK_ANY {
 | |
| 				option "RCLK" "ANY" {
 | |
| 					clock anyedge;
 | |
| 				}
 | |
| 			}
 | |
| 			ifdef RCLK_POS {
 | |
| 				option "RCLK" "POS" {
 | |
| 					clock posedge;
 | |
| 				}
 | |
| 			}
 | |
| 			ifdef RCLK_NEG {
 | |
| 				option "RCLK" "NEG" {
 | |
| 					clock negedge;
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }
 |