1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
entity e is end entity; architecture a of e is signal a : boolean; begin process(a) begin case a is when false => report "FALSE"; when true => report "TRUE"; when others => report "others"; end case; end process; end architecture;