Update workspace configuration and add new lecture notes for INKOM and REDIG

This commit is contained in:
fzzinchemical
2026-01-30 07:40:07 +01:00
parent 994664dd24
commit 14500efff4
24 changed files with 193 additions and 44 deletions

View File

@@ -0,0 +1,37 @@
f# VHDL
Basis 3 Board oder Basis 2 Board
Vivado wird im Labor verwendet, installationsvorgaben sind in Aulis vorzufinden
In der Übung heute VHDL ausprobieren
folgende List ist nicht vollständig und repräsentiert nur das durch Herrn Bredereke präsentierte Projekt ()
## Typen
- character
- string
- integer
## Datenformate
`type <name> is (a, b, c);`
`type <name> is array();`
`type <name> is record ... end record;`
`constant <name>: <type> := <value>`
## Schnittstellen
```vhdl
entity <name> is
port();
end <name>;
```
## Objekte
``` vhdl
constant <name>: <type> := ();
```
## Zuweisung
```vhdl
constant <name>: integer := 0 --deklaration
<name> <= 1 --variabeländerung
```