Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinpt/symbolator
HDL symbol generator
https://github.com/kevinpt/symbolator
hdl symbol verilog vhdl
Last synced: 3 months ago
JSON representation
HDL symbol generator
- Host: GitHub
- URL: https://github.com/kevinpt/symbolator
- Owner: kevinpt
- License: mit
- Created: 2017-01-26T04:23:23.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T17:59:12.000Z (almost 2 years ago)
- Last Synced: 2024-07-15T12:55:19.241Z (4 months ago)
- Topics: hdl, symbol, verilog, vhdl
- Language: Python
- Homepage: https://kevinpt.github.io/symbolator
- Size: 407 KB
- Stars: 175
- Watchers: 14
- Forks: 46
- Open Issues: 16
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-opensource-hardware - symbolator
README
.. image:: http://kevinpt.github.io/symbolator/_static/symbolator_icon.png
==========
Symbolator
==========Symbolator is a component diagramming tool for VHDL and Verilog. It will parse HDL source files, extract components or modules and render them as an image.
.. code-block:: vhdl
library ieee;
use ieee.std_logic_1164.all;package demo is
component demo_device is
generic (
SIZE : positive;
RESET_ACTIVE_LEVEL : std_ulogic := '1'
);
port (
--# {{clocks|}}
Clock : in std_ulogic;
Reset : in std_ulogic;
--# {{control|Named section}}
Enable : in std_ulogic;
Data_in : in std_ulogic_vector(SIZE-1 downto 0);
Data_out : out std_ulogic_vector(SIZE-1 downto 0)
);
end component;
end package;.. parsed-literal::
> symbolator -i demo_device.vhdl
Scanning library: .
Creating symbol for demo_device.vhdl "demo_device"
-> demo_device-demo_device.svgProduces the following:
.. image:: http://kevinpt.github.io/symbolator/_images/demo_device-demo_device.svgSymbolator can render to PNG bitmap images or SVG, PDF, PS, and EPS vector images. SVG is the default.
Requirements
------------Symbolator requires either Python 2.7 or Python 3.x, Pycairo, and Pango.
The installation script depends on setuptools. The source is written in
Python 2.7 syntax but will convert cleanly to Python 3 when the installer
passes it through 2to3.The Pango library is used compute the dimensions of a text layout. There is no standard package to get the Pango Python bindings installed. It is a part of the Gtk+ library which is accessed either through the PyGtk or PyGObject APIs, both of which are supported by Symbolator. You should make sure that one of these libraries is available before installing Symbolator. A `Windows installer `_ is available. For Linux distributions you should install the relevant libraries with your package manager.
Licensing
---------Symbolator is licensed for free commercial and non-commercial use under the terms of the MIT license. The Symbolator Sphinx extension is derived from the Graphviz extension and is BSD licensed.
Download
--------You can access the Symbolator Git repository from `Github
`_. You can install direct from PyPI with the "pip"
command if you have it available.Documentation
-------------The full documentation is available online at the `main Symbolator site
`_.