# VHDL Compiler — user reviews

> 1 indexed App Store user reviews of VHDL Compiler by Ketan Appa, rated 2.70/5 from 7 ratings.

- Source: https://appshunter.io/ios/app/vhdl-compiler/id1459379888/reviews
- App overview in markdown: https://appshunter.io/ios/app/vhdl-compiler/id1459379888.md
- Rating breakdown: 5★ 2 · 4★ 1 · 3★ 0 · 2★ 1 · 1★ 3

## Most critical reviews (1 lowest-rated)

### 5/5 — Works great simulates std_logic circuits just fine

*2019-11-08*

I realized that it’s essential to limit simulation with ultimately a WAIT; statement including a clock generator with limited total time
Here is a simple test setup beyond just text:

Enjoy.. great job by the developer of the App and the original open source VHDL Compiler Designer
————————————————
--  Hello world program
library IEEE;
use IEEE.std_logic_1164.all;

use std.textio.all; -- Imports the standard textio package.

--  Defines a design entity, without any ports.
entity hello is
end hello;

architecture behaviour of hello is

	signal index : integer:=0;
 	signal clk : std_logic := '0';
begin
    process(clk)
        variable l : line;
    begin
        if(rising_edge(clk)) then
			write(l,String'("/"));
        	writeline (output, l);
        end if;
    end process;    process
       
 		begin
        index <= index +1;
		 clk <= not clk;
		 wait for 1 ns;
		if index > 20 then
        wait;
		end if;
    end process;
end behaviour;

---

*Data collected daily from the US App Store and indexed by [AppsHunter](https://appshunter.io/). User reviews are verbatim App Store reviews. Ratings, prices and chart positions refresh continuously; this snapshot is from 2026-08-16.*
