34 lines
		
	
	
		
			927 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			927 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| -- VHDL Entity Morse.charToMorseController.symbol
 | |
| --
 | |
| -- Created:
 | |
| --          by - francois.francois (Aphelia)
 | |
| --          at - 09:13:01 03/29/19
 | |
| --
 | |
| -- Generated by Mentor Graphics' HDL Designer(TM) 2019.2 (Build 5)
 | |
| --
 | |
| LIBRARY ieee;
 | |
|   USE ieee.std_logic_1164.all;
 | |
|   USE ieee.numeric_std.all;
 | |
| 
 | |
| ENTITY charToMorseController IS
 | |
|     GENERIC( 
 | |
|         characterBitNb : positive := 8;
 | |
|         unitCountBitNb : positive := 3
 | |
|     );
 | |
|     PORT( 
 | |
|         morseOut     : OUT    std_ulogic;
 | |
|         clock        : IN     std_ulogic;
 | |
|         reset        : IN     std_ulogic;
 | |
|         charNotReady : IN     std_ulogic;
 | |
|         char         : IN     std_ulogic_vector (characterBitNb-1 DOWNTO 0);
 | |
|         startCounter : OUT    std_ulogic;
 | |
|         unitNb       : OUT    unsigned (unitCountBitNb-1 DOWNTO 0);
 | |
|         counterDone  : IN     std_ulogic;
 | |
|         readChar     : OUT    std_ulogic
 | |
|     );
 | |
| 
 | |
| -- Declarations
 | |
| 
 | |
| END charToMorseController ;
 | |
| 
 |