6 lines
		
	
	
		
			141 B
		
	
	
	
		
			VHDL
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			141 B
		
	
	
	
		
			VHDL
		
	
	
	
	
	
ARCHITECTURE studentVersion OF sinCosTable IS
 | 
						|
BEGIN
 | 
						|
  sine <= (others => '0');
 | 
						|
  cosine <= (others => '0');
 | 
						|
END ARCHITECTURE studentVersion;
 |