-- VHDL Entity Morse.charToMorse.symbol -- -- Created: -- by - remi.heredero.UNKNOWN (WE2330808) -- at - 13:09:12 10.04.2024 -- -- 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 ;