Live Reviews:
VHDL Compiler

VHDL Compiler

Learn and code in VHDL

⭐️3 / 5
Rating
🙌6
Ratings
📼5 scs
Content
📦w/o updates
Updates frequency
🗣❌ unsupported
Your locale
🧾$2.99
In-App Purchase

All Versions of VHDL Compiler

2.2.1

October 1, 2023

Fixes a crash when opening files

2.2

September 21, 2023

Optimized for iOS and iPadOS 17

2.1

September 13, 2023

Bug fixes and performance improvement

2.0.2

August 21, 2023

Bug fixes and performance improvement

2.0.1

December 26, 2022

Bug fixes and performance improvement

2.0

November 24, 2022

Optimized for iOS and iPadOS 16

1.9

June 9, 2022

Optimized for iOS and iPadOS 15

1.8

January 15, 2021

Bug fixes and performance improvement

1.7.2

October 15, 2020

Bug fixes and performance improvement

1.7.1

September 29, 2020

Fixed a bug when pasting text

VHDL Compiler In-App Purchases History

$2.99

Upgrade

Upgrade to premium version

Price History of VHDL Compiler

Description of VHDL Compiler

Write VHDL code directly on your iPhone, iPad and iPod Touch! This app is ideal for learning and testing code snippets! VHDL (VHSIC Hardware Description Language) is a hardware description language used in electronic design automation to describe digital and mixed-signal systems such as field-programmable gate arrays and integrated circuits. VHDL can also be used as a general purpose parallel programming language. This app uses the open-source GHDL simulator (http://ghdl.free.fr). GHDL is a VHDL compiler that can execute (nearly) any VHDL program. GHDL is not a synthesis tool: you cannot create a netlist with GHDL (yet). Features: - Compile and run your program - View program output or detailed error - Custom keyboard for easy input of frequently used characters - Optimized for connecting with external physical/bluetooth keyboard - Advanced source code editor with syntax highlighting and line numbers - Open, save, import and share VHDL files. Limitations: - Internet connection is required for compilation - Maximum program running time is 20s - All entities should be have the same name as their files.
Show less

VHDL Compiler: FAQ

Can VHDL Compiler support iPad devices?

Yes, VHDL Compiler is available for iPad users.
The creator of VHDL Compiler is Ketan Appa.
The minimum supported iOS version for the app is 11.2.
Currently, VHDL Compiler has a user rating of 3.0.
Vhdl Compiler Relates To The Education App Genre.
The latest version of the VHDL Compiler app is 2.2.1.
July 4, 2024 is the date of the latest update of the VHDL Compiler app.
VHDL Compiler officially launched on February 5, 2023.
{{ name}} is considered child-appropriate and rated Ketan Appa.
The following list of languages is supported by the VHDL Compiler app: English.
No, VHDL Compiler is not on Apple Arcade.
Yes, VHDL Compiler supports in-app purchases for added functionality.
No, VHDL Compiler does not provide support for Apple Vision Pro.

Screenshots of VHDL Compiler

iphone
ipad

More Applications by Ketan Appa

Alternatives to VHDL Compiler

Reviews of VHDL Compiler

  • Works great simulates std_logic circuits just fine

    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;