How to perform 'Count Vowels' in VHDL.
-- Task: Count Vowels
-- Language: VHDL
process count_vowels() begin
-- Implementation for Count Vowels
signal result = ...; -- Initialize variable
-- TODO: Implement core logic here
-- Step 1: Prepare data
-- Step 2: Process Count Vowels
report("Done");
end process;