aboutsummaryrefslogtreecommitdiffstats
path: root/doc/0_Intro/WhatIsVHDL.rst
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@tu-dresden.de>2017-02-19 04:57:17 +0100
committertgingold <tgingold@users.noreply.github.com>2017-12-10 12:02:05 +0100
commite9f9a248facfcb9f249e7817bbc1264e2ea1ca32 (patch)
tree8accbb94a99dc60a0ac4fe8f54d19b285f22ad40 /doc/0_Intro/WhatIsVHDL.rst
parent7c1a8746d2b4fc076bcb287c8917af750a6b3d58 (diff)
downloadghdl-e9f9a248facfcb9f249e7817bbc1264e2ea1ca32.tar.gz
ghdl-e9f9a248facfcb9f249e7817bbc1264e2ea1ca32.tar.bz2
ghdl-e9f9a248facfcb9f249e7817bbc1264e2ea1ca32.zip
New documentation structure for GHDL.
Diffstat (limited to 'doc/0_Intro/WhatIsVHDL.rst')
-rw-r--r--doc/0_Intro/WhatIsVHDL.rst29
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/0_Intro/WhatIsVHDL.rst b/doc/0_Intro/WhatIsVHDL.rst
new file mode 100644
index 000000000..b78ddda9a
--- /dev/null
+++ b/doc/0_Intro/WhatIsVHDL.rst
@@ -0,0 +1,29 @@
+.. _INTRO:VHDL:
+
+What is `VHDL`?
+###############
+
+`VHDL` is an acronym for Very High Speed Integrated Circuit Hardware Description
+Language which is a programming language used to describe a logic circuit by
+function, data flow behavior, or structure.
+
+`VHDL` *is* a programming language: although `VHDL` was not designed for writing
+general purpose programs, you can write any algorithm with the `VHDL` language.
+If you are able to write programs, you will find in `VHDL` features similar to
+those found in procedural languages such as `C`, `Python`, or `Ada`. `VHDL`
+derives most of its syntax and semantics from `Ada`. Knowing `Ada` is an
+advantage for learning `VHDL` (it is an advantage in general as well).
+
+However, `VHDL` was not designed as a general purpose language but as an `HDL`
+(hardware description language). As the name implies, `VHDL` aims at modeling or
+documenting electronics systems. Due to the nature of hardware components which
+are always running, `VHDL` is a highly concurrent language, built upon an
+event-based timing model.
+
+Like a program written in any other language, a `VHDL` program can be executed.
+Since `VHDL` is used to model designs, the term :dfn:`simulation` is often used
+instead of `execution`, with the same meaning.
+
+Like a program written in another hardware description language, a `VHDL`
+program can be transformed with a :dfn:`synthesis tool` into a netlist, that is,
+a detailed gate-level implementation.