aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/name_table.py
Commit message (Collapse)AuthorAgeFilesLines
* Change encoding to latin-1 for libghdl (to comply with standard).Patrick Lehmann2022-12-241-3/+4
| | | | | | It can be monkey-patched via pyGHDL.libGHDL.ENCODING. (cherry picked from commit 2dd38de9d52493cde7c045ed73a987ed06bf617a)
* Changed export decorator from pydecor to pyTooling.DecoratorsPatrick Lehmann2021-12-121-1/+1
|
* Fix Codacy problems.Patrick Lehmann2021-07-011-0/+4
|
* Black found more files - strange.Patrick Lehmann2021-06-171-6/+4
| | | | | | Executed black to make code unreadable. (cherry picked from commit 1b34c2368428b1ec295073ee47d201ac1def35f6)
* Using a decorator to bind libghdl to Python.Patrick Lehmann2021-06-171-18/+36
|
* pyGHDL: fix formattingTristan Gingold2021-06-171-0/+1
|
* pyGHDL: add Get_Character to name_table.pyTristan Gingold2021-06-161-2/+15
|
* pyGHDL: format using blackXiretza2021-02-101-30/+28
|
* Reworking pre-compile scripts for Windows (#1594)Patrick Lehmann2021-01-151-16/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Updated pre-compile scripts for OSVVM. * Reworked script for Vivado. * Reworked script for ISE. * Reworked UVVM compile script. Cannot be tested due to missing feature in GHDL see #1593. * Reworked scripts for Altera, Intel and Lattice. * Updated module imports. * Adjusted warnings. * Read OSVVM package files from compile-order file 'osvvm.pro'. * Support OSVVM and OSVVMLibraries as source directory. * Added support for OSVVM models to precompile script. * First update to the pre-compile scripts documentation. * Minimized file headers and redundant documentation. Using PowerShell's feature to document files, functions and modules. * Updated README in precompile scripts directory. * license: update headers of pyGHDL, scripts/windows, libraries/vendors * Fixed ForegroundColor and InvocationName. Co-authored-by: umarcor <unai.martinezcorral@ehu.eus>
* Fixes for Python files.Patrick Lehmann2021-01-101-27/+30
|
* Make API more pythonic be replacing C-like byte arrays with str. Abstracted ↵Patrick Lehmann2021-01-101-6/+8
| | | | utf-8 encoding/decoding.
* Adding types and docstrings to libghdl.Patrick Lehmann2021-01-101-8/+40
|
* Added '@export' to list public interface items in '__all__'.Patrick Lehmann2021-01-021-0/+1
| | | | (cherry picked from commit 17fa10f71a50c2441115459df8d656acdb337f6e)
* Reordered import statments to: std library, global install, current project.Patrick Lehmann2021-01-021-1/+5
|
* Add more missing file headers (incl. license info) to non-autogenerated ↵Patrick Lehmann2021-01-021-0/+34
| | | | Python files.
* pyGHDL/libghdl: fix absolute importsumarcor2020-12-291-1/+1
|
* rework 'python', rename to 'pyGHDL'umarcor2020-12-271-0/+16
* Rename 'python' to 'pyGHDL'. * Let 'thin' be 'libghdl'. * Move move 'pyutils.py' from 'python/libghdl/vhdl' to a separate package ('pyGHDL/libghdl/utils/'). * Update 'vhdl_langserver' accordingly. * Rename 'vhdl_langserver' to 'lsp'. * Move 'ghdl-ls' to 'pyGHDL/cli'.