aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Re-add instructions to make a static build.Tristan Gingold2020-05-232-0/+45
|
* Add a test for ghdl/ghdl#1318Tristan Gingold2020-05-232-0/+51
|
* Adjust a test.Tristan Gingold2020-05-231-1/+1
|
* ghdl.cc: import attributes on memory. For ghdl/ghdl#1318Tristan Gingold2020-05-231-1/+19
|
* README.md: remove static build instructions.Tristan Gingold2020-05-222-64/+0
| | | | Was not working anymore.
* Add a test for ghdl/ghdl#1314Tristan Gingold2020-05-162-0/+184
|
* Add a test for inout port with default value.Tristan Gingold2020-05-162-0/+23
|
* ghdl.cc: handle Id_IinoutTristan Gingold2020-05-161-0/+2
|
* Add another test from ghdl/ghdl#1309Tristan Gingold2020-05-143-0/+116
|
* Add test from ghdl/ghdl#1309Tristan Gingold2020-05-146-0/+749
|
* testsuite: add test from ghdl/ghdl#1307Tristan Gingold2020-05-146-0/+432
|
* Add formal test for pmux gateXiretza2020-05-143-1/+59
|
* Fix ordering of $pmux portsXiretza2020-05-141-2/+2
| | | | | | | | For Id_Pmux, IN(2+n) corresponds to s(n). For $pmux, B[n*WIDTH-1:(n-1)*WIDTH] corresponds to S[n]. Therefore, the inputs need to be appended in ascending order, such that IN(2) is assigned to B[WIDTH-1:0], IN(3) to B[2*WIDTH-1:WIDTH], etc.
* ghdl.cc: implement id_pmuxTristan Gingold2020-05-091-12/+22
|
* Add test for ghdl#1238Tristan Gingold2020-04-232-0/+30
|
* handle Id_Tri and Id_ResolverTristan Gingold2020-04-231-0/+9
|
* ghdl.cc: adjust for recent yosys. Fix #107Tristan Gingold2020-04-231-1/+1
|
* readme: fix docker usageeine2020-04-191-2/+4
|
* Improve examples for Lattice iCEstickAimylios2020-04-1916-5/+45
| | | | | | | - move "leds" examples to subdirectory - add Makefile - add *.json files to .gitignore - adjust README.md and fix some typos
* Add tests/examples for dff (both pos and neg edge).Tristan Gingold2020-04-155-0/+116
|
* ghdl.cc: adjust for edge handle (ghdl#1227)Tristan Gingold2020-04-151-16/+53
|
* update READMEumarcor2020-04-101-32/+26
|
* ghdl.cc: avoid duplicate blackboxes.Tristan Gingold2020-04-091-1/+4
|
* Add a test for asynchronous reset dff.Tristan Gingold2020-04-073-0/+43
|
* Adjust test with incorrect value.Tristan Gingold2020-04-072-2/+2
|
* Add support for non-constant asynchronous reset dff.Tristan Gingold2020-04-071-5/+29
|
* Add a test for #102Tristan Gingold2020-04-072-0/+34
|
* Add support for smod. Fix #102Tristan Gingold2020-04-071-0/+2
|
* Adjust ecp5_versa tests. Wrappers for verilog modules are not needed anymore.Tristan Gingold2020-03-315-78/+73
|
* Handle Id_User_Parameters: add parameters to gates.Tristan Gingold2020-03-311-21/+60
| | | | This allows easy interfacing with verilog modules.
* Add regression test for versa_ecp5Tristan Gingold2020-03-311-0/+25
|
* Add a test for #96Tristan Gingold2020-03-292-0/+33
|
* Add support for inout gate. Fix #96Tristan Gingold2020-03-291-3/+39
|
* Fixed URL of the ghdl/synth Docker imageRodrigo Alejandro Melo2020-03-271-1/+3
|
* Add min/max gatesXiretza2020-03-224-1/+91
|
* Move formal tests for gates into single subdirectoryXiretza2020-03-2210-10/+1
|
* Add abs gate (#91)Xiretza2020-03-105-0/+69
|
* Fix ghdl.cc indentation (#90)Xiretza2020-03-101-168/+169
| | | | Switched everything to tabs, since those seemed to be most common. Also added a vim modeline.
* Add test for previous commit.Tristan Gingold2020-03-092-0/+25
|
* ghdl.cc: avoid infinite recursion due to concatenation.Tristan Gingold2020-03-091-2/+50
|
* ghdl.cc: refactoring before optimization.Tristan Gingold2020-03-091-25/+26
|
* ghdl.cc: rewrite help.Tristan Gingold2020-03-011-2/+23
|
* Show usage with nextpnr instead of arachne-pnr in README (#88)Xiretza2020-02-231-4/+6
|
* ghdl.cc: adjust after changes in ghdl (for memories).Tristan Gingold2020-02-231-4/+16
|
* Add a test for issue 1107Tristan Gingold2020-02-152-0/+24
|
* Added ECP5 example for Lattice versa devkit (#85)Martin2020-02-1429-0/+6692
| | | | | | | - LED blinky - Added support for vendor primitives - Workarounds in Verilog for BRAM and primitive wrapping - Docker support Makefiles - openocd support files
* ci: use image with pre-built GHDL (#81)eine2020-01-212-55/+25
| | | | | | * ci: use image with pre-built GHDL * ci: execute 'push' workflow on pull_request too
* Make test logs mode consistent: Add OK status. For #79Tristan Gingold2020-01-206-0/+6
|
* migrate from Travis to GHA and rework examples (#78)eine2020-01-1953-439/+174
| | | | | | * migrate from Travis to GHA * rework examples
* add cons_0, div, and umod (#72)Pepijn de Vos2019-12-311-2/+22
| | | | | | * add cons_0, [su]div, and umod * Yosys mod is actually remainder semantics