VHDL Compiler

VHDL Compiler

Learn and code in VHDL

Free
In-App PurchasesWith Ads
Black friday sale icon
Ready for Black Friday?
Click to generate a QR code for easy access to the app on the App Store

Details about VHDL Compiler

  • Released
  • Updated
  • iOS Version
  • Age Rating
  • Size
  • Devices
  • Languages

Developer of VHDL Compiler

VHDL Compiler screenshot #1 for iPhone
VHDL Compiler screenshot #2 for iPhone
VHDL Compiler screenshot #3 for iPhone
VHDL Compiler screenshot #4 for iPhone
VHDL Compiler screenshot #5 for iPhone
iphone
ipad
🙌7
Ratings
🗣❌ unsupported
Your locale
🖼️Download
Icons↘︎

Version History of VHDL Compiler

2.3.1

November 3, 2024

Bug fix when using keyboard shortcut on iPad

2.3

September 12, 2024

Optimized for iOS 18 and iPadOS 18

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

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 - One file can be run at a time - 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.

Who is the app developer of VHDL Compiler?

The creator of VHDL Compiler is Ketan Appa.

What is the minimum iOS version to run VHDL Compiler?

The minimum supported iOS version for the app is 11.2.

What is the overall app rating of VHDL Compiler?

Currently, VHDL Compiler has a user rating of 2.7.

What is the category of the VHDL Compiler app?

Vhdl Compiler Relates To The Education App Genre.

What is the newest version of VHDL Compiler?

The latest version of the VHDL Compiler app is 2.3.1.

What is the latest update date for VHDL Compiler?

November 30, 2024 is the date of the latest update of the VHDL Compiler app.

Could you provide information on the release date of VHDL Compiler?

VHDL Compiler officially launched on February 5, 2023.

What age is suitable for the VHDL Compiler app?

VHDL Compiler is considered child-appropriate and rated Ketan Appa.

What languages are available on VHDL Compiler?

The following list of languages is supported by the VHDL Compiler app: English.

Is VHDL Compiler included in the roster of games on Apple Arcade?

No, VHDL Compiler is not on Apple Arcade.

Does VHDL Compiler support in-app purchases?

Yes, VHDL Compiler supports in-app purchases for added functionality.

Does VHDL Compiler provide support for Apple Vision Pro?

No, VHDL Compiler does not provide support for Apple Vision Pro.

Are there commercial ads in VHDL Compiler?

Yes, there are commercial ads in VHDL Compiler.

Alternatives to VHDL Compiler

More Applications by Ketan Appa

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;
Show less