-- VHDL Entity Morse.charToMorse.symbol -- -- Created: -- by - axel.amand.UNKNOWN (WE7860) -- at - 14:49:52 28.04.2023 -- -- 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 charToMorse IS GENERIC( characterBitNb : positive := 8; unitCountDivide : positive := 10E3 ); PORT( morseOut : OUT std_ulogic; clock : IN std_ulogic; reset : IN std_ulogic; charIn : IN std_ulogic_vector (characterBitNb-1 DOWNTO 0); readChar : OUT std_ulogic; charNotReady : IN std_ulogic ); -- Declarations END charToMorse ;