├── .github └── workflows │ └── push.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── ci.sh ├── examples ├── docker.mk ├── ecp5_versa │ ├── Makefile │ ├── fifobuf.vhdl │ ├── libram.vhdl │ ├── pll_mac.vhd │ ├── soc_iomap_pkg.vhdl │ ├── uart.vhdl │ ├── uart_rx.vhdl │ ├── uart_tx.vhdl │ ├── versa_ecp5.lpf │ └── versa_ecp5_top.vhdl ├── ghdlsynth.mk ├── ice40hx8k │ ├── leds.vhdl │ ├── pinmap.pcf │ ├── spin1.vhdl │ └── spin2.vhdl ├── icestick │ ├── leds │ │ ├── Makefile │ │ ├── Manifest.py │ │ ├── blink.vhdl │ │ ├── fixed1.vhdl │ │ ├── leds.pcf │ │ ├── leds.vhdl │ │ ├── multi1.vhdl │ │ ├── multi2.vhdl │ │ ├── rotate1.vhdl │ │ ├── rotate2.vhdl │ │ ├── rotate3.vhdl │ │ ├── rotate4.vhdl │ │ ├── spin1.vhdl │ │ └── spin2.vhdl │ └── uart │ │ ├── README.md │ │ ├── hdl │ │ ├── uart_rx.vhd │ │ ├── uart_top.vhd │ │ └── uart_tx.vhd │ │ └── syn │ │ ├── constraints │ │ └── uart.pcf │ │ └── synth.sh └── icezum │ ├── Makefile │ ├── blink.vhdl │ ├── counter.vhdl │ ├── icezum.pcf │ ├── led_on.vhdl │ ├── pushbutton.vhdl │ └── test.sh ├── library ├── ecp5u │ └── components.vhdl └── wrapper │ ├── README │ ├── bram.v │ ├── primitives.v │ └── wrapper.v ├── openocd ├── LFE5U-25F.cfg ├── LFE5U-45F.cfg ├── LFE5U-85F.cfg ├── LFE5UM-25F.cfg ├── LFE5UM-45F.cfg ├── LFE5UM-85F.cfg ├── LFE5UM5G-25F.cfg ├── LFE5UM5G-45F.cfg ├── LFE5UM5G-85F.cfg ├── ecp5-evn.cfg ├── ecp5-versa.cfg └── olimex-arm-usb-tiny-h.cfg ├── src ├── Makefile.inc └── ghdl.cc ├── testsuite ├── examples │ ├── 00version │ │ └── testsuite.sh │ ├── blackbox │ │ ├── blackbox1.vhdl │ │ ├── blackbox2.vhdl │ │ ├── blackbox3.vhdl │ │ └── testsuite.sh │ ├── dff │ │ ├── adff.vhdl │ │ ├── dff.vhdl │ │ ├── negadff.vhdl │ │ ├── negdff.vhdl │ │ └── testsuite.sh │ ├── test-ecp5_versa │ │ └── testsuite.sh │ ├── test-ice40hx8k │ │ └── testsuite.sh │ ├── test-icestick │ │ └── testsuite.sh │ └── test-icezum │ │ └── testsuite.sh ├── formal │ ├── gates │ │ ├── test_abs.sby │ │ ├── test_abs.vhd │ │ ├── test_asr.sby │ │ ├── test_asr.vhd │ │ ├── test_lsl.sby │ │ ├── test_lsl.vhd │ │ ├── test_lsr.sby │ │ ├── test_lsr.vhd │ │ ├── test_minmax.sby │ │ ├── test_minmax.vhd │ │ ├── test_mod_rem.sby │ │ ├── test_mod_rem.vhd │ │ ├── test_pmux.sby │ │ ├── test_pmux.vhd │ │ └── testsuite.sh │ └── ram │ │ ├── testsuite.sh │ │ ├── wbr_ram.sby │ │ └── wbr_ram.vhd ├── ghdl-issues │ ├── issue1000 │ │ ├── test.vhdl │ │ └── testsuite.sh │ ├── issue1001 │ │ ├── async.vhdl │ │ ├── sync.vhdl │ │ └── testsuite.sh │ ├── issue1107 │ │ ├── testsuite.sh │ │ └── unconnected.vhdl │ ├── issue1238 │ │ ├── multiplexers_3.vhdl │ │ └── testsuite.sh │ ├── issue1307 │ │ ├── NexysVideo.xdc │ │ ├── conversion_to_RGB.vhd │ │ ├── hdmi_design.vhd │ │ ├── hdmi_io.vhd │ │ ├── run_vivado.tcl │ │ └── testsuite.sh │ ├── issue1309 │ │ ├── axis_squarer.sby │ │ ├── axis_squarer.vhd │ │ ├── faxis_master.v │ │ ├── faxis_slave.v │ │ ├── tb_formal_top.v │ │ └── testsuite.sh │ ├── issue1309b │ │ ├── psl_test.sby │ │ ├── psl_test.vhdl │ │ └── testsuite.sh │ ├── issue1312 │ │ ├── ent.vhdl │ │ └── testsuite.sh │ ├── issue1314 │ │ ├── issue.vhdl │ │ └── testsuite.sh │ ├── issue1318 │ │ ├── ram_blk.vhdl │ │ └── testsuite.sh │ ├── issue1421a │ │ ├── aes_pkg.vhdl │ │ ├── cipher.vhdl │ │ └── testsuite.sh │ ├── issue1610 │ │ ├── exp.vhdl │ │ └── testsuite.sh │ ├── issue1682 │ │ ├── testsuite.sh │ │ └── top.vhdl │ ├── issue1699 │ │ ├── test2.vhdl │ │ └── testsuite.sh │ ├── issue2373 │ │ ├── async_test-plus.sby │ │ ├── async_test-star.sby │ │ ├── dut.vhdl │ │ ├── tb_dut-plus.vhdl │ │ ├── tb_dut-star.vhdl │ │ └── testsuite.sh │ ├── issue2392 │ │ ├── async_test-0.sby │ │ ├── async_test-1.sby │ │ ├── async_test-2.sby │ │ ├── async_test.sby │ │ ├── dut.vhdl │ │ ├── tb_dut-0.vhdl │ │ ├── tb_dut-1.vhdl │ │ ├── tb_dut-2.vhdl │ │ ├── tb_dut.vhdl │ │ └── testsuite.sh │ ├── issue2392b │ │ ├── compare_psl_p_plus.sby │ │ ├── compare_psl_p_plus.vhdl │ │ ├── psl_p_plus.vhdl │ │ ├── psl_p_plus.ys │ │ └── testsuite.sh │ ├── issue2672 │ │ ├── prove_01-orig.sby │ │ ├── prove_01-orig.vhdl │ │ ├── prove_01.sby │ │ ├── prove_01.vhdl │ │ ├── prove_01b-orig.vhdl │ │ ├── prove_01b.vhdl │ │ ├── repro.sby │ │ ├── repro.vhdl │ │ └── testsuite.sh │ ├── issue2962 │ │ ├── testsuite.sh │ │ ├── top.v │ │ └── top.vhdl │ ├── issue999 │ │ ├── test.vhdl │ │ └── testsuite.sh │ └── xfail1 │ │ ├── test.vhdl │ │ ├── testfail.sh │ │ └── testsuite.sh ├── issues │ ├── bug-loop1 │ │ ├── loop1.vhdl │ │ └── testsuite.sh │ ├── issue101 │ │ ├── counters_3.v │ │ ├── counters_3.vhdl │ │ └── testsuite.sh │ ├── issue102 │ │ ├── counters_8.vhdl │ │ └── testsuite.sh │ ├── issue11 │ │ ├── test_nand.vhdl │ │ ├── test_nor.vhdl │ │ ├── test_or.vhdl │ │ ├── test_xnor.vhdl │ │ ├── test_xor.vhdl │ │ └── testsuite.sh │ ├── issue154 │ │ ├── keep.vhdl │ │ └── testsuite.sh │ ├── issue158 │ │ ├── repro.vhdl │ │ ├── repro1.vhdl │ │ ├── repro3.vhdl │ │ ├── repro4.vhdl │ │ └── testsuite.sh │ ├── issue159 │ │ ├── repro.vhdl │ │ ├── repro2.vhdl │ │ └── testsuite.sh │ ├── issue160 │ │ ├── fpu.vhdl │ │ ├── fpu2.vhdl │ │ └── testsuite.sh │ ├── issue216 │ │ ├── attr.vhdl │ │ └── testsuite.sh │ ├── issue36 │ │ ├── bram.vhdl │ │ ├── bram2.vhdl │ │ ├── bram3.vhdl │ │ └── testsuite.sh │ ├── issue4 │ │ ├── counter8.vhdl │ │ ├── no_vector.vhdl │ │ ├── testsuite.sh │ │ └── vector.vhdl │ ├── issue6 │ │ ├── testsuite.sh │ │ └── vector.vhdl │ ├── issue61 │ │ ├── testsuite.sh │ │ └── vector.vhdl │ ├── issue65 │ │ ├── latch3.vhdl │ │ └── testsuite.sh │ ├── issue68 │ │ ├── demux.vhdl │ │ └── testsuite.sh │ ├── issue7 │ │ ├── ref.vhdl │ │ ├── testsuite.sh │ │ └── vector.vhdl │ ├── issue73 │ │ ├── cell1.vhdl │ │ ├── cell2.vhdl │ │ ├── multi.vhdl │ │ └── testsuite.sh │ ├── issue75 │ │ ├── testsuite.sh │ │ └── top.vhdl │ ├── issue76 │ │ ├── dff01.vhdl │ │ └── testsuite.sh │ ├── issue96 │ │ ├── ent.vhdl │ │ └── testsuite.sh │ ├── pr171 │ │ ├── bootrom.vhdl │ │ └── testsuite.sh │ ├── pr63 │ │ ├── testsuite.sh │ │ └── vector.vhdl │ ├── pr64 │ │ ├── testsuite.sh │ │ └── vector.vhdl │ └── pr66 │ │ ├── testsuite.sh │ │ └── vector.vhdl ├── testenv.sh └── testsuite.sh └── utils.sh /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/README.md -------------------------------------------------------------------------------- /ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/ci.sh -------------------------------------------------------------------------------- /examples/docker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/docker.mk -------------------------------------------------------------------------------- /examples/ecp5_versa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ecp5_versa/Makefile -------------------------------------------------------------------------------- /examples/ecp5_versa/fifobuf.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ecp5_versa/fifobuf.vhdl -------------------------------------------------------------------------------- /examples/ecp5_versa/libram.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ecp5_versa/libram.vhdl -------------------------------------------------------------------------------- /examples/ecp5_versa/pll_mac.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ecp5_versa/pll_mac.vhd -------------------------------------------------------------------------------- /examples/ecp5_versa/soc_iomap_pkg.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ecp5_versa/soc_iomap_pkg.vhdl -------------------------------------------------------------------------------- /examples/ecp5_versa/uart.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ecp5_versa/uart.vhdl -------------------------------------------------------------------------------- /examples/ecp5_versa/uart_rx.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ecp5_versa/uart_rx.vhdl -------------------------------------------------------------------------------- /examples/ecp5_versa/uart_tx.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ecp5_versa/uart_tx.vhdl -------------------------------------------------------------------------------- /examples/ecp5_versa/versa_ecp5.lpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ecp5_versa/versa_ecp5.lpf -------------------------------------------------------------------------------- /examples/ecp5_versa/versa_ecp5_top.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ecp5_versa/versa_ecp5_top.vhdl -------------------------------------------------------------------------------- /examples/ghdlsynth.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ghdlsynth.mk -------------------------------------------------------------------------------- /examples/ice40hx8k/leds.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ice40hx8k/leds.vhdl -------------------------------------------------------------------------------- /examples/ice40hx8k/pinmap.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ice40hx8k/pinmap.pcf -------------------------------------------------------------------------------- /examples/ice40hx8k/spin1.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ice40hx8k/spin1.vhdl -------------------------------------------------------------------------------- /examples/ice40hx8k/spin2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/ice40hx8k/spin2.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/Makefile -------------------------------------------------------------------------------- /examples/icestick/leds/Manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/Manifest.py -------------------------------------------------------------------------------- /examples/icestick/leds/blink.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/blink.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/fixed1.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/fixed1.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/leds.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/leds.pcf -------------------------------------------------------------------------------- /examples/icestick/leds/leds.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/leds.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/multi1.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/multi1.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/multi2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/multi2.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/rotate1.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/rotate1.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/rotate2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/rotate2.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/rotate3.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/rotate3.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/rotate4.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/rotate4.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/spin1.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/spin1.vhdl -------------------------------------------------------------------------------- /examples/icestick/leds/spin2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/leds/spin2.vhdl -------------------------------------------------------------------------------- /examples/icestick/uart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/uart/README.md -------------------------------------------------------------------------------- /examples/icestick/uart/hdl/uart_rx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/uart/hdl/uart_rx.vhd -------------------------------------------------------------------------------- /examples/icestick/uart/hdl/uart_top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/uart/hdl/uart_top.vhd -------------------------------------------------------------------------------- /examples/icestick/uart/hdl/uart_tx.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/uart/hdl/uart_tx.vhd -------------------------------------------------------------------------------- /examples/icestick/uart/syn/constraints/uart.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/uart/syn/constraints/uart.pcf -------------------------------------------------------------------------------- /examples/icestick/uart/syn/synth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icestick/uart/syn/synth.sh -------------------------------------------------------------------------------- /examples/icezum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icezum/Makefile -------------------------------------------------------------------------------- /examples/icezum/blink.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icezum/blink.vhdl -------------------------------------------------------------------------------- /examples/icezum/counter.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icezum/counter.vhdl -------------------------------------------------------------------------------- /examples/icezum/icezum.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icezum/icezum.pcf -------------------------------------------------------------------------------- /examples/icezum/led_on.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icezum/led_on.vhdl -------------------------------------------------------------------------------- /examples/icezum/pushbutton.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icezum/pushbutton.vhdl -------------------------------------------------------------------------------- /examples/icezum/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/examples/icezum/test.sh -------------------------------------------------------------------------------- /library/ecp5u/components.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/library/ecp5u/components.vhdl -------------------------------------------------------------------------------- /library/wrapper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/library/wrapper/README -------------------------------------------------------------------------------- /library/wrapper/bram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/library/wrapper/bram.v -------------------------------------------------------------------------------- /library/wrapper/primitives.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/library/wrapper/primitives.v -------------------------------------------------------------------------------- /library/wrapper/wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/library/wrapper/wrapper.v -------------------------------------------------------------------------------- /openocd/LFE5U-25F.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/LFE5U-25F.cfg -------------------------------------------------------------------------------- /openocd/LFE5U-45F.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/LFE5U-45F.cfg -------------------------------------------------------------------------------- /openocd/LFE5U-85F.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/LFE5U-85F.cfg -------------------------------------------------------------------------------- /openocd/LFE5UM-25F.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/LFE5UM-25F.cfg -------------------------------------------------------------------------------- /openocd/LFE5UM-45F.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/LFE5UM-45F.cfg -------------------------------------------------------------------------------- /openocd/LFE5UM-85F.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/LFE5UM-85F.cfg -------------------------------------------------------------------------------- /openocd/LFE5UM5G-25F.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/LFE5UM5G-25F.cfg -------------------------------------------------------------------------------- /openocd/LFE5UM5G-45F.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/LFE5UM5G-45F.cfg -------------------------------------------------------------------------------- /openocd/LFE5UM5G-85F.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/LFE5UM5G-85F.cfg -------------------------------------------------------------------------------- /openocd/ecp5-evn.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/ecp5-evn.cfg -------------------------------------------------------------------------------- /openocd/ecp5-versa.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/ecp5-versa.cfg -------------------------------------------------------------------------------- /openocd/olimex-arm-usb-tiny-h.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/openocd/olimex-arm-usb-tiny-h.cfg -------------------------------------------------------------------------------- /src/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/src/Makefile.inc -------------------------------------------------------------------------------- /src/ghdl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/src/ghdl.cc -------------------------------------------------------------------------------- /testsuite/examples/00version/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/00version/testsuite.sh -------------------------------------------------------------------------------- /testsuite/examples/blackbox/blackbox1.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/blackbox/blackbox1.vhdl -------------------------------------------------------------------------------- /testsuite/examples/blackbox/blackbox2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/blackbox/blackbox2.vhdl -------------------------------------------------------------------------------- /testsuite/examples/blackbox/blackbox3.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/blackbox/blackbox3.vhdl -------------------------------------------------------------------------------- /testsuite/examples/blackbox/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/blackbox/testsuite.sh -------------------------------------------------------------------------------- /testsuite/examples/dff/adff.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/dff/adff.vhdl -------------------------------------------------------------------------------- /testsuite/examples/dff/dff.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/dff/dff.vhdl -------------------------------------------------------------------------------- /testsuite/examples/dff/negadff.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/dff/negadff.vhdl -------------------------------------------------------------------------------- /testsuite/examples/dff/negdff.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/dff/negdff.vhdl -------------------------------------------------------------------------------- /testsuite/examples/dff/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/dff/testsuite.sh -------------------------------------------------------------------------------- /testsuite/examples/test-ecp5_versa/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/test-ecp5_versa/testsuite.sh -------------------------------------------------------------------------------- /testsuite/examples/test-ice40hx8k/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/test-ice40hx8k/testsuite.sh -------------------------------------------------------------------------------- /testsuite/examples/test-icestick/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/test-icestick/testsuite.sh -------------------------------------------------------------------------------- /testsuite/examples/test-icezum/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/examples/test-icezum/testsuite.sh -------------------------------------------------------------------------------- /testsuite/formal/gates/test_abs.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_abs.sby -------------------------------------------------------------------------------- /testsuite/formal/gates/test_abs.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_abs.vhd -------------------------------------------------------------------------------- /testsuite/formal/gates/test_asr.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_asr.sby -------------------------------------------------------------------------------- /testsuite/formal/gates/test_asr.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_asr.vhd -------------------------------------------------------------------------------- /testsuite/formal/gates/test_lsl.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_lsl.sby -------------------------------------------------------------------------------- /testsuite/formal/gates/test_lsl.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_lsl.vhd -------------------------------------------------------------------------------- /testsuite/formal/gates/test_lsr.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_lsr.sby -------------------------------------------------------------------------------- /testsuite/formal/gates/test_lsr.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_lsr.vhd -------------------------------------------------------------------------------- /testsuite/formal/gates/test_minmax.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_minmax.sby -------------------------------------------------------------------------------- /testsuite/formal/gates/test_minmax.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_minmax.vhd -------------------------------------------------------------------------------- /testsuite/formal/gates/test_mod_rem.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_mod_rem.sby -------------------------------------------------------------------------------- /testsuite/formal/gates/test_mod_rem.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_mod_rem.vhd -------------------------------------------------------------------------------- /testsuite/formal/gates/test_pmux.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_pmux.sby -------------------------------------------------------------------------------- /testsuite/formal/gates/test_pmux.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/test_pmux.vhd -------------------------------------------------------------------------------- /testsuite/formal/gates/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/gates/testsuite.sh -------------------------------------------------------------------------------- /testsuite/formal/ram/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/ram/testsuite.sh -------------------------------------------------------------------------------- /testsuite/formal/ram/wbr_ram.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/ram/wbr_ram.sby -------------------------------------------------------------------------------- /testsuite/formal/ram/wbr_ram.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/formal/ram/wbr_ram.vhd -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1000/test.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1000/test.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1000/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1000/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1001/async.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1001/async.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1001/sync.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1001/sync.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1001/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1001/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1107/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1107/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1107/unconnected.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1107/unconnected.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1238/multiplexers_3.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1238/multiplexers_3.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1238/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1238/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1307/NexysVideo.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1307/NexysVideo.xdc -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1307/conversion_to_RGB.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1307/conversion_to_RGB.vhd -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1307/hdmi_design.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1307/hdmi_design.vhd -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1307/hdmi_io.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1307/hdmi_io.vhd -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1307/run_vivado.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1307/run_vivado.tcl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1307/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1307/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1309/axis_squarer.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1309/axis_squarer.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1309/axis_squarer.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1309/axis_squarer.vhd -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1309/faxis_master.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1309/faxis_master.v -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1309/faxis_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1309/faxis_slave.v -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1309/tb_formal_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1309/tb_formal_top.v -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1309/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1309/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1309b/psl_test.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1309b/psl_test.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1309b/psl_test.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1309b/psl_test.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1309b/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1309b/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1312/ent.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1312/ent.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1312/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1312/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1314/issue.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1314/issue.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1314/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1314/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1318/ram_blk.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1318/ram_blk.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1318/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1318/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1421a/aes_pkg.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1421a/aes_pkg.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1421a/cipher.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1421a/cipher.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1421a/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1421a/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1610/exp.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1610/exp.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1610/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1610/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1682/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1682/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1682/top.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1682/top.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1699/test2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1699/test2.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue1699/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue1699/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2373/async_test-plus.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2373/async_test-plus.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2373/async_test-star.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2373/async_test-star.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2373/dut.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2373/dut.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2373/tb_dut-plus.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2373/tb_dut-plus.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2373/tb_dut-star.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2373/tb_dut-star.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2373/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2373/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392/async_test-0.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392/async_test-0.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392/async_test-1.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392/async_test-1.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392/async_test-2.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392/async_test-2.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392/async_test.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392/async_test.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392/dut.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392/dut.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392/tb_dut-0.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392/tb_dut-0.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392/tb_dut-1.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392/tb_dut-1.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392/tb_dut-2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392/tb_dut-2.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392/tb_dut.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392/tb_dut.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392b/compare_psl_p_plus.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392b/compare_psl_p_plus.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392b/compare_psl_p_plus.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392b/compare_psl_p_plus.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392b/psl_p_plus.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392b/psl_p_plus.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392b/psl_p_plus.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392b/psl_p_plus.ys -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2392b/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2392b/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2672/prove_01-orig.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2672/prove_01-orig.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2672/prove_01-orig.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2672/prove_01-orig.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2672/prove_01.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2672/prove_01.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2672/prove_01.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2672/prove_01.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2672/prove_01b-orig.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2672/prove_01b-orig.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2672/prove_01b.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2672/prove_01b.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2672/repro.sby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2672/repro.sby -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2672/repro.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2672/repro.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2672/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2672/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2962/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2962/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2962/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2962/top.v -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue2962/top.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue2962/top.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue999/test.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue999/test.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/issue999/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/issue999/testsuite.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/xfail1/test.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/xfail1/test.vhdl -------------------------------------------------------------------------------- /testsuite/ghdl-issues/xfail1/testfail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/xfail1/testfail.sh -------------------------------------------------------------------------------- /testsuite/ghdl-issues/xfail1/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/ghdl-issues/xfail1/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/bug-loop1/loop1.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/bug-loop1/loop1.vhdl -------------------------------------------------------------------------------- /testsuite/issues/bug-loop1/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/bug-loop1/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue101/counters_3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue101/counters_3.v -------------------------------------------------------------------------------- /testsuite/issues/issue101/counters_3.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue101/counters_3.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue101/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue101/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue102/counters_8.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue102/counters_8.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue102/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue102/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue11/test_nand.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue11/test_nand.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue11/test_nor.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue11/test_nor.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue11/test_or.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue11/test_or.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue11/test_xnor.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue11/test_xnor.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue11/test_xor.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue11/test_xor.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue11/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue11/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue154/keep.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue154/keep.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue154/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue154/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue158/repro.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue158/repro.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue158/repro1.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue158/repro1.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue158/repro3.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue158/repro3.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue158/repro4.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue158/repro4.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue158/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue158/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue159/repro.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue159/repro.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue159/repro2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue159/repro2.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue159/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue159/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue160/fpu.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue160/fpu.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue160/fpu2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue160/fpu2.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue160/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue160/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue216/attr.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue216/attr.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue216/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue216/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue36/bram.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue36/bram.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue36/bram2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue36/bram2.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue36/bram3.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue36/bram3.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue36/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue36/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue4/counter8.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue4/counter8.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue4/no_vector.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue4/no_vector.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue4/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue4/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue4/vector.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue4/vector.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue6/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue6/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue6/vector.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue6/vector.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue61/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue61/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue61/vector.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue61/vector.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue65/latch3.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue65/latch3.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue65/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue65/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue68/demux.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue68/demux.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue68/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue68/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue7/ref.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue7/ref.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue7/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue7/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue7/vector.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue7/vector.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue73/cell1.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue73/cell1.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue73/cell2.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue73/cell2.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue73/multi.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue73/multi.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue73/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue73/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue75/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue75/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue75/top.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue75/top.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue76/dff01.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue76/dff01.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue76/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue76/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/issue96/ent.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue96/ent.vhdl -------------------------------------------------------------------------------- /testsuite/issues/issue96/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/issue96/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/pr171/bootrom.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/pr171/bootrom.vhdl -------------------------------------------------------------------------------- /testsuite/issues/pr171/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/pr171/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/pr63/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/pr63/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/pr63/vector.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/pr63/vector.vhdl -------------------------------------------------------------------------------- /testsuite/issues/pr64/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/pr64/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/pr64/vector.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/pr64/vector.vhdl -------------------------------------------------------------------------------- /testsuite/issues/pr66/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/pr66/testsuite.sh -------------------------------------------------------------------------------- /testsuite/issues/pr66/vector.vhdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/issues/pr66/vector.vhdl -------------------------------------------------------------------------------- /testsuite/testenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/testenv.sh -------------------------------------------------------------------------------- /testsuite/testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/testsuite/testsuite.sh -------------------------------------------------------------------------------- /utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghdl/ghdl-yosys-plugin/HEAD/utils.sh --------------------------------------------------------------------------------