mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 11:42:30 +00:00 
			
		
		
		
	Fixed incorrect signal naming in GP_IOBUF
This commit is contained in:
		
							parent
							
								
									2db8dd6d35
								
							
						
					
					
						commit
						deb1eccab5
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -139,8 +139,8 @@ module GP_IBUF(input IN, output OUT); | ||||||
| endmodule | endmodule | ||||||
| 
 | 
 | ||||||
| module GP_IOBUF(input IN, input OE, output OUT, inout IO); | module GP_IOBUF(input IN, input OE, output OUT, inout IO); | ||||||
| 	assign IN = IO; | 	assign OUT = IO; | ||||||
| 	assign IO = OE ? OUT : 1'bz; | 	assign IO = OE ? IN : 1'bz; | ||||||
| endmodule | endmodule | ||||||
| 
 | 
 | ||||||
| module GP_INV(input IN, output OUT); | module GP_INV(input IN, output OUT); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue