├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── TODO ├── examples ├── .gitignore ├── Makefile ├── basic │ ├── Makefile │ ├── basic.jed │ ├── basic.v │ ├── basic_from_tt.v │ ├── basic_tt.csv │ ├── device.yaml │ ├── dump.yaml │ └── netlist.png ├── data_east │ ├── 68000_dotdisplay │ │ ├── Makefile │ │ └── U26 │ │ │ ├── Makefile │ │ │ ├── U26.v │ │ │ └── device.yaml │ └── Makefile ├── gatter │ ├── Makefile │ ├── device.yaml │ ├── dump.yaml │ └── gatter.v ├── reg │ ├── device.yaml │ ├── netlist.png │ └── reg.v └── whitestar │ ├── Makefile │ ├── U16 │ ├── Makefile │ ├── U16.v │ ├── device.yaml │ └── dump.yaml │ ├── U19 │ ├── Makefile │ ├── U19.v │ ├── device.yaml │ └── dump.yaml │ ├── U20 │ ├── Makefile │ ├── U20.v │ ├── device.yaml │ └── dump.yaml │ ├── U213 │ ├── Makefile │ ├── U213.v │ ├── device.yaml │ └── dump.yaml │ └── U213_lotr_le │ ├── Makefile │ ├── U213.v │ ├── device.yaml │ └── dump.yaml ├── regal ├── __init__.py ├── __main__.py ├── dump │ ├── __init__.py │ ├── dump.py │ ├── probes │ │ ├── __init__.py │ │ └── arduino_mega │ │ │ ├── __init__.py │ │ │ ├── dump.py │ │ │ └── fw │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── galdumper.c │ └── tt2v.py ├── pnr │ ├── __init__.py │ ├── exception.py │ ├── gal.py │ ├── jedec.py │ ├── netlist.py │ └── pnr.py └── synth │ ├── __init__.py │ ├── gal.v │ ├── gal_map.v │ ├── gal_tri.v │ └── synth.py ├── setup.py └── tests ├── samples ├── and.csv ├── and.jed ├── and.v ├── andc.jed ├── clk.jed ├── clk.v ├── clk_mixed.jed ├── clk_mixed.v ├── device.yaml ├── device_complex.yaml ├── device_reg.yaml ├── dump.yaml ├── fb.jed ├── fb.v ├── nand.csv ├── nand.jed ├── nand.v ├── nandc.jed ├── nor.csv ├── nor.v ├── not.csv ├── not.jed ├── not.v ├── notc.jed ├── or.csv ├── or.jed ├── or.v ├── orc.jed ├── tt0.csv ├── tt1.csv ├── v0.jed ├── v0.v ├── v0c.jed ├── v1.jed ├── v1.v ├── v1c.jed ├── xor.csv ├── xor.jed ├── xor.v └── xorc.jed ├── test_synth.py └── test_tt2v.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/TODO -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | *.jed 2 | *.csv 3 | -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/basic/Makefile -------------------------------------------------------------------------------- /examples/basic/basic.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/basic/basic.jed -------------------------------------------------------------------------------- /examples/basic/basic.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/basic/basic.v -------------------------------------------------------------------------------- /examples/basic/basic_from_tt.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/basic/basic_from_tt.v -------------------------------------------------------------------------------- /examples/basic/basic_tt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/basic/basic_tt.csv -------------------------------------------------------------------------------- /examples/basic/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/basic/device.yaml -------------------------------------------------------------------------------- /examples/basic/dump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/basic/dump.yaml -------------------------------------------------------------------------------- /examples/basic/netlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/basic/netlist.png -------------------------------------------------------------------------------- /examples/data_east/68000_dotdisplay/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | $(MAKE) -C U26 3 | 4 | .PHONY: all 5 | -------------------------------------------------------------------------------- /examples/data_east/68000_dotdisplay/U26/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/data_east/68000_dotdisplay/U26/Makefile -------------------------------------------------------------------------------- /examples/data_east/68000_dotdisplay/U26/U26.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/data_east/68000_dotdisplay/U26/U26.v -------------------------------------------------------------------------------- /examples/data_east/68000_dotdisplay/U26/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/data_east/68000_dotdisplay/U26/device.yaml -------------------------------------------------------------------------------- /examples/data_east/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | $(MAKE) -C 68000_dotdisplay 3 | 4 | .PHONY: all 5 | -------------------------------------------------------------------------------- /examples/gatter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/gatter/Makefile -------------------------------------------------------------------------------- /examples/gatter/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/gatter/device.yaml -------------------------------------------------------------------------------- /examples/gatter/dump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/gatter/dump.yaml -------------------------------------------------------------------------------- /examples/gatter/gatter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/gatter/gatter.v -------------------------------------------------------------------------------- /examples/reg/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/reg/device.yaml -------------------------------------------------------------------------------- /examples/reg/netlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/reg/netlist.png -------------------------------------------------------------------------------- /examples/reg/reg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/reg/reg.v -------------------------------------------------------------------------------- /examples/whitestar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/Makefile -------------------------------------------------------------------------------- /examples/whitestar/U16/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U16/Makefile -------------------------------------------------------------------------------- /examples/whitestar/U16/U16.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U16/U16.v -------------------------------------------------------------------------------- /examples/whitestar/U16/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U16/device.yaml -------------------------------------------------------------------------------- /examples/whitestar/U16/dump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U16/dump.yaml -------------------------------------------------------------------------------- /examples/whitestar/U19/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U19/Makefile -------------------------------------------------------------------------------- /examples/whitestar/U19/U19.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U19/U19.v -------------------------------------------------------------------------------- /examples/whitestar/U19/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U19/device.yaml -------------------------------------------------------------------------------- /examples/whitestar/U19/dump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U19/dump.yaml -------------------------------------------------------------------------------- /examples/whitestar/U20/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U20/Makefile -------------------------------------------------------------------------------- /examples/whitestar/U20/U20.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U20/U20.v -------------------------------------------------------------------------------- /examples/whitestar/U20/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U20/device.yaml -------------------------------------------------------------------------------- /examples/whitestar/U20/dump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U20/dump.yaml -------------------------------------------------------------------------------- /examples/whitestar/U213/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U213/Makefile -------------------------------------------------------------------------------- /examples/whitestar/U213/U213.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U213/U213.v -------------------------------------------------------------------------------- /examples/whitestar/U213/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U213/device.yaml -------------------------------------------------------------------------------- /examples/whitestar/U213/dump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U213/dump.yaml -------------------------------------------------------------------------------- /examples/whitestar/U213_lotr_le/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U213_lotr_le/Makefile -------------------------------------------------------------------------------- /examples/whitestar/U213_lotr_le/U213.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U213_lotr_le/U213.v -------------------------------------------------------------------------------- /examples/whitestar/U213_lotr_le/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U213_lotr_le/device.yaml -------------------------------------------------------------------------------- /examples/whitestar/U213_lotr_le/dump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/examples/whitestar/U213_lotr_le/dump.yaml -------------------------------------------------------------------------------- /regal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/__init__.py -------------------------------------------------------------------------------- /regal/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/__main__.py -------------------------------------------------------------------------------- /regal/dump/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/dump/__init__.py -------------------------------------------------------------------------------- /regal/dump/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/dump/dump.py -------------------------------------------------------------------------------- /regal/dump/probes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regal/dump/probes/arduino_mega/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/dump/probes/arduino_mega/__init__.py -------------------------------------------------------------------------------- /regal/dump/probes/arduino_mega/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/dump/probes/arduino_mega/dump.py -------------------------------------------------------------------------------- /regal/dump/probes/arduino_mega/fw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/dump/probes/arduino_mega/fw/.gitignore -------------------------------------------------------------------------------- /regal/dump/probes/arduino_mega/fw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/dump/probes/arduino_mega/fw/Makefile -------------------------------------------------------------------------------- /regal/dump/probes/arduino_mega/fw/galdumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/dump/probes/arduino_mega/fw/galdumper.c -------------------------------------------------------------------------------- /regal/dump/tt2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/dump/tt2v.py -------------------------------------------------------------------------------- /regal/pnr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/pnr/__init__.py -------------------------------------------------------------------------------- /regal/pnr/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/pnr/exception.py -------------------------------------------------------------------------------- /regal/pnr/gal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/pnr/gal.py -------------------------------------------------------------------------------- /regal/pnr/jedec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/pnr/jedec.py -------------------------------------------------------------------------------- /regal/pnr/netlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/pnr/netlist.py -------------------------------------------------------------------------------- /regal/pnr/pnr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/pnr/pnr.py -------------------------------------------------------------------------------- /regal/synth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/synth/__init__.py -------------------------------------------------------------------------------- /regal/synth/gal.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/synth/gal.v -------------------------------------------------------------------------------- /regal/synth/gal_map.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/synth/gal_map.v -------------------------------------------------------------------------------- /regal/synth/gal_tri.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/synth/gal_tri.v -------------------------------------------------------------------------------- /regal/synth/synth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/regal/synth/synth.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/setup.py -------------------------------------------------------------------------------- /tests/samples/and.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/and.csv -------------------------------------------------------------------------------- /tests/samples/and.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/and.jed -------------------------------------------------------------------------------- /tests/samples/and.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/and.v -------------------------------------------------------------------------------- /tests/samples/andc.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/andc.jed -------------------------------------------------------------------------------- /tests/samples/clk.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/clk.jed -------------------------------------------------------------------------------- /tests/samples/clk.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/clk.v -------------------------------------------------------------------------------- /tests/samples/clk_mixed.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/clk_mixed.jed -------------------------------------------------------------------------------- /tests/samples/clk_mixed.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/clk_mixed.v -------------------------------------------------------------------------------- /tests/samples/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/device.yaml -------------------------------------------------------------------------------- /tests/samples/device_complex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/device_complex.yaml -------------------------------------------------------------------------------- /tests/samples/device_reg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/device_reg.yaml -------------------------------------------------------------------------------- /tests/samples/dump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/dump.yaml -------------------------------------------------------------------------------- /tests/samples/fb.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/fb.jed -------------------------------------------------------------------------------- /tests/samples/fb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/fb.v -------------------------------------------------------------------------------- /tests/samples/nand.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/nand.csv -------------------------------------------------------------------------------- /tests/samples/nand.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/nand.jed -------------------------------------------------------------------------------- /tests/samples/nand.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/nand.v -------------------------------------------------------------------------------- /tests/samples/nandc.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/nandc.jed -------------------------------------------------------------------------------- /tests/samples/nor.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/nor.csv -------------------------------------------------------------------------------- /tests/samples/nor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/nor.v -------------------------------------------------------------------------------- /tests/samples/not.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/not.csv -------------------------------------------------------------------------------- /tests/samples/not.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/not.jed -------------------------------------------------------------------------------- /tests/samples/not.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/not.v -------------------------------------------------------------------------------- /tests/samples/notc.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/notc.jed -------------------------------------------------------------------------------- /tests/samples/or.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/or.csv -------------------------------------------------------------------------------- /tests/samples/or.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/or.jed -------------------------------------------------------------------------------- /tests/samples/or.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/or.v -------------------------------------------------------------------------------- /tests/samples/orc.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/orc.jed -------------------------------------------------------------------------------- /tests/samples/tt0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/tt0.csv -------------------------------------------------------------------------------- /tests/samples/tt1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/tt1.csv -------------------------------------------------------------------------------- /tests/samples/v0.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/v0.jed -------------------------------------------------------------------------------- /tests/samples/v0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/v0.v -------------------------------------------------------------------------------- /tests/samples/v0c.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/v0c.jed -------------------------------------------------------------------------------- /tests/samples/v1.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/v1.jed -------------------------------------------------------------------------------- /tests/samples/v1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/v1.v -------------------------------------------------------------------------------- /tests/samples/v1c.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/v1c.jed -------------------------------------------------------------------------------- /tests/samples/xor.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/xor.csv -------------------------------------------------------------------------------- /tests/samples/xor.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/xor.jed -------------------------------------------------------------------------------- /tests/samples/xor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/xor.v -------------------------------------------------------------------------------- /tests/samples/xorc.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/samples/xorc.jed -------------------------------------------------------------------------------- /tests/test_synth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/test_synth.py -------------------------------------------------------------------------------- /tests/test_tt2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psurply/ReGAL/HEAD/tests/test_tt2v.py --------------------------------------------------------------------------------