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