├── .gitignore ├── COPYING ├── README.txt ├── bit2bits.py ├── env.sh ├── fuzzer └── clb_lut │ ├── Makefile │ ├── README.txt │ ├── generate.py │ ├── generate.sh │ └── theorem.py ├── lca2bit.py ├── minitest ├── all │ ├── Makefile │ └── release.sh ├── clb_lut │ ├── Makefile │ ├── README.txt │ ├── generate.py │ ├── generate.sh │ └── sb.xnf ├── first │ ├── Makefile │ └── first.xnf ├── lca │ ├── Makefile │ ├── indent_lca.py │ ├── reformat_lca.py │ └── release.sh └── outsel │ ├── Makefile │ ├── README.txt │ ├── release.sh │ └── sweep.py ├── parse.py ├── utils └── genheader.sh └── xc2k ├── __init__.py ├── bit2bits.py ├── clb2lca.py ├── container.py ├── parser.py └── xact.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/COPYING -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/README.txt -------------------------------------------------------------------------------- /bit2bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/bit2bits.py -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/env.sh -------------------------------------------------------------------------------- /fuzzer/clb_lut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/fuzzer/clb_lut/Makefile -------------------------------------------------------------------------------- /fuzzer/clb_lut/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/fuzzer/clb_lut/README.txt -------------------------------------------------------------------------------- /fuzzer/clb_lut/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/fuzzer/clb_lut/generate.py -------------------------------------------------------------------------------- /fuzzer/clb_lut/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/fuzzer/clb_lut/generate.sh -------------------------------------------------------------------------------- /fuzzer/clb_lut/theorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/fuzzer/clb_lut/theorem.py -------------------------------------------------------------------------------- /lca2bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/lca2bit.py -------------------------------------------------------------------------------- /minitest/all/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/all/Makefile -------------------------------------------------------------------------------- /minitest/all/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/all/release.sh -------------------------------------------------------------------------------- /minitest/clb_lut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/clb_lut/Makefile -------------------------------------------------------------------------------- /minitest/clb_lut/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/clb_lut/README.txt -------------------------------------------------------------------------------- /minitest/clb_lut/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/clb_lut/generate.py -------------------------------------------------------------------------------- /minitest/clb_lut/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/clb_lut/generate.sh -------------------------------------------------------------------------------- /minitest/clb_lut/sb.xnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/clb_lut/sb.xnf -------------------------------------------------------------------------------- /minitest/first/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/first/Makefile -------------------------------------------------------------------------------- /minitest/first/first.xnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/first/first.xnf -------------------------------------------------------------------------------- /minitest/lca/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/lca/Makefile -------------------------------------------------------------------------------- /minitest/lca/indent_lca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/lca/indent_lca.py -------------------------------------------------------------------------------- /minitest/lca/reformat_lca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/lca/reformat_lca.py -------------------------------------------------------------------------------- /minitest/lca/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/lca/release.sh -------------------------------------------------------------------------------- /minitest/outsel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/outsel/Makefile -------------------------------------------------------------------------------- /minitest/outsel/README.txt: -------------------------------------------------------------------------------- 1 | Sweeps across LUT input muxes 2 | -------------------------------------------------------------------------------- /minitest/outsel/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/outsel/release.sh -------------------------------------------------------------------------------- /minitest/outsel/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/minitest/outsel/sweep.py -------------------------------------------------------------------------------- /parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/parse.py -------------------------------------------------------------------------------- /utils/genheader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/utils/genheader.sh -------------------------------------------------------------------------------- /xc2k/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xc2k/bit2bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/xc2k/bit2bits.py -------------------------------------------------------------------------------- /xc2k/clb2lca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/xc2k/clb2lca.py -------------------------------------------------------------------------------- /xc2k/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/xc2k/container.py -------------------------------------------------------------------------------- /xc2k/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/xc2k/parser.py -------------------------------------------------------------------------------- /xc2k/xact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnDMcMaster/project2064/HEAD/xc2k/xact.py --------------------------------------------------------------------------------