gitextract_t5t89av7/ ├── .gitattributes ├── .gitignore ├── BeMicro/ │ ├── README.txt │ ├── ltcminer.qpf │ ├── ltcminer.qsf │ └── ltcminer.sdc ├── DE0-Nano/ │ ├── ltcminer.qpf │ ├── ltcminer.qsf │ └── ltcminer.sdc ├── DE2-115-Single/ │ ├── README.txt │ ├── ltcminer.qpf │ ├── ltcminer.qsf │ └── ltcminer.sdc ├── ICARUS-LX150/ │ ├── MiningSoftware/ │ │ ├── README.txt │ │ ├── ltcminer-testmode.py │ │ ├── ltcminer.py │ │ ├── pyserial-2.6/ │ │ │ ├── CHANGES.txt │ │ │ ├── LICENSE.txt │ │ │ ├── MANIFEST.in │ │ │ ├── PKG-INFO │ │ │ ├── README.txt │ │ │ ├── documentation/ │ │ │ │ ├── Makefile │ │ │ │ ├── appendix.rst │ │ │ │ ├── conf.py │ │ │ │ ├── examples.rst │ │ │ │ ├── index.rst │ │ │ │ ├── pyparallel.rst │ │ │ │ ├── pyserial.rst │ │ │ │ ├── pyserial_api.rst │ │ │ │ └── shortintro.rst │ │ │ ├── examples/ │ │ │ │ ├── enhancedserial.py │ │ │ │ ├── port_publisher.py │ │ │ │ ├── port_publisher.sh │ │ │ │ ├── rfc2217_server.py │ │ │ │ ├── scan.py │ │ │ │ ├── scanlinux.py │ │ │ │ ├── scanwin32.py │ │ │ │ ├── setup-miniterm-py2exe.py │ │ │ │ ├── setup-rfc2217_server-py2exe.py │ │ │ │ ├── setup-wxTerminal-py2exe.py │ │ │ │ ├── tcp_serial_redirect.py │ │ │ │ ├── wxSerialConfigDialog.py │ │ │ │ ├── wxSerialConfigDialog.wxg │ │ │ │ ├── wxTerminal.py │ │ │ │ └── wxTerminal.wxg │ │ │ ├── serial/ │ │ │ │ ├── __init__.py │ │ │ │ ├── rfc2217.py │ │ │ │ ├── serialcli.py │ │ │ │ ├── serialjava.py │ │ │ │ ├── serialposix.py │ │ │ │ ├── serialutil.py │ │ │ │ ├── serialwin32.py │ │ │ │ ├── sermsdos.py │ │ │ │ ├── tools/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── list_ports.py │ │ │ │ │ ├── list_ports_posix.py │ │ │ │ │ ├── list_ports_windows.py │ │ │ │ │ └── miniterm.py │ │ │ │ ├── urlhandler/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── protocol_hwgrep.py │ │ │ │ │ ├── protocol_loop.py │ │ │ │ │ ├── protocol_rfc2217.py │ │ │ │ │ └── protocol_socket.py │ │ │ │ └── win32.py │ │ │ ├── setup.py │ │ │ └── test/ │ │ │ ├── run_all_tests.py │ │ │ ├── test.py │ │ │ ├── test_advanced.py │ │ │ ├── test_high_load.py │ │ │ ├── test_iolib.py │ │ │ ├── test_readline.py │ │ │ └── test_url.py │ │ └── python-jsonrpc/ │ │ ├── jsonrpc/ │ │ │ ├── __init__.py │ │ │ ├── _tests/ │ │ │ │ ├── __init__.py │ │ │ │ ├── test_cgiwrapper.py │ │ │ │ ├── test_json.py │ │ │ │ ├── test_modpywrapper.py │ │ │ │ ├── test_proxy.py │ │ │ │ └── test_serviceHandler.py │ │ │ ├── cgiwrapper.py │ │ │ ├── json.py │ │ │ ├── modpywrapper.py │ │ │ ├── proxy.py │ │ │ └── serviceHandler.py │ │ ├── run-tests.py │ │ └── setup.py │ ├── README.txt │ ├── dyn_pll_ctrl.v │ ├── hub_core.v │ ├── ltcminer_icarus.ucf │ ├── ltcminer_icarus.v │ ├── pbkdfengine.v │ ├── pwm_fade.v │ ├── salsa_slowsixteen.v │ ├── salsaengine.v │ ├── serial.v │ ├── serial_hub.v │ ├── test_icarus.v │ ├── uart_receiver.v │ ├── uart_transmitter.v │ ├── xilinx_dyn_pll.v │ ├── xilinx_pll.v │ └── xilinx_ram.v ├── LICENSE.txt ├── README.txt ├── bitstreams.txt ├── experimental/ │ ├── CM1/ │ │ ├── README.txt │ │ ├── dcm_controller.v │ │ ├── flasher.v │ │ ├── hashvoodoo.ucf │ │ ├── hashvoodoo.v │ │ ├── hashvoodoo_test.v │ │ ├── hub_core.v │ │ ├── main_dcm.v │ │ ├── pbkdfengine.v │ │ ├── pwm_fade.v │ │ ├── salsa_slowsixteen.v │ │ ├── salsaengine.v │ │ ├── serial_core.v │ │ ├── sha-256-functions.v │ │ ├── sha256_transform.v │ │ ├── uart.v │ │ ├── uart_baudgenerator.v │ │ ├── uart_rx.v │ │ ├── uart_tx.v │ │ └── xilinx_ram.v │ ├── DE2-115-SLOWSIXTEEN/ │ │ ├── README.txt │ │ ├── altera_pll.v │ │ ├── altera_virtual_wire.v │ │ ├── ltcminer.qpf │ │ ├── ltcminer.qsf │ │ ├── ltcminer.sdc │ │ ├── ltcminer.v │ │ ├── pbkdfengine.v │ │ ├── salsa_slowsixteen.v │ │ ├── salsaengine.v │ │ ├── sha-256-functions.v │ │ ├── sha256_transform.v │ │ ├── sim_ram.v │ │ └── test_ltcminer.v │ ├── LX150-EIGHT-A/ │ │ ├── README.txt │ │ ├── ltcminer_icarus.ucf │ │ ├── ltcminer_icarus.v │ │ ├── pbkdfengine.v │ │ ├── salsa_piped.v │ │ ├── salsaengine.v │ │ ├── sgen.c │ │ ├── sgen.inc │ │ ├── test_icarus.v │ │ └── xilinx_dpram.v │ ├── LX150-EIGHT-B/ │ │ ├── README.txt │ │ ├── dyn_pll_ctrl.v │ │ ├── ltcminer-dynclock.py │ │ ├── ltcminer-test-dynclock.py │ │ ├── ltcminer_icarus.ucf │ │ ├── ltcminer_icarus.v │ │ ├── pbkdfengine.v │ │ ├── salsa_piped.v │ │ ├── salsaengine.v │ │ ├── sgen.c │ │ ├── sgen.inc │ │ ├── test_icarus.v │ │ ├── xilinx_dpram.v │ │ └── xilinx_dyn_pll.v │ ├── LX150-EIGHT-C/ │ │ ├── README.txt │ │ ├── dyn_pll_ctrl.v │ │ ├── ltcminer_icarus.ucf │ │ ├── ltcminer_icarus.v │ │ ├── pbkdfengine.v │ │ ├── salsa_piped.v │ │ ├── salsaengine.v │ │ ├── sgen.c │ │ ├── sgen.inc │ │ ├── test_icarus.v │ │ ├── xilinx_dpram.v │ │ └── xilinx_dyn_pll.v │ ├── LX150-SIXTYFOUR-A/ │ │ ├── dyn_pll_ctrl.v │ │ ├── ltcminer_icarus.ucf │ │ ├── ltcminer_icarus.v │ │ ├── pbkdfengine.v │ │ ├── salsa_piped.v │ │ ├── salsaengine.v │ │ ├── sgen.c │ │ ├── sgen.inc │ │ ├── test_icarus.v │ │ ├── xilinx_dpram.v │ │ └── xilinx_dyn_pll.v │ ├── LX150-SLOWEIGHT-A/ │ │ ├── dyn_pll_ctrl.v │ │ ├── ltcminer_icarus.ucf │ │ ├── ltcminer_icarus.v │ │ ├── pbkdfengine.v │ │ ├── salsa_sloweight.v │ │ ├── salsaengine.v │ │ ├── test_icarus.v │ │ ├── xilinx_dpram.v │ │ └── xilinx_dyn_pll.v │ ├── LX150-SLOWSIXTEEN-A/ │ │ ├── dyn_pll_ctrl.v │ │ ├── ltcminer_icarus.ucf │ │ ├── ltcminer_icarus.v │ │ ├── pbkdfengine.v │ │ ├── salsa_slowsixteen.v │ │ ├── salsaengine.v │ │ ├── test_icarus.v │ │ ├── xilinx_dpram.v │ │ └── xilinx_dyn_pll.v │ ├── LX150-SPLIT/ │ │ ├── README.txt │ │ ├── ltcminer_icarus.ucf │ │ ├── ltcminer_icarus.v │ │ ├── pbkdfengine.v │ │ └── salsaengine.v │ ├── README.txt │ ├── ZTEX/ │ │ ├── README.txt │ │ ├── ztex_ufm1_15.ucf │ │ └── ztex_ufm1_15b1_litecoin.v │ ├── Ztex-1-15y/ │ │ ├── README.txt │ │ ├── cgminer-3.1.1/ │ │ │ ├── README.txt │ │ │ ├── cgminer.c │ │ │ ├── driver-icarus.c │ │ │ ├── driver-ztex.c │ │ │ ├── libztex.c │ │ │ ├── libztex.h │ │ │ └── miner.h │ │ ├── pbkdfengine.v │ │ ├── salsa_slowsixteen.v │ │ ├── salsaengine.v │ │ ├── sha-256-functions.v │ │ ├── sha256_transform.v │ │ ├── test_miner.v │ │ ├── xilinx_ram.v │ │ ├── ztex_ufm1_15y.ucf │ │ └── ztex_ufm1_15y1.v │ ├── hashvariant-A.v │ ├── hashvariant-B.v │ ├── hashvariant-C.v │ └── salsa-B.v ├── scripts/ │ ├── config.example.tcl │ ├── json_rpc.tcl │ ├── jtag_comm.tcl │ ├── mine.bat │ ├── mine.sh │ ├── mine.tcl │ ├── program-fpga-board.bat │ ├── program-fpga-board.tcl │ ├── test_data.txt │ ├── test_data_cut.txt │ ├── test_data_full.txt │ └── utils.tcl └── source/ ├── altera_pll.v ├── altera_ram.v ├── altera_virtual_wire.v ├── hashcore.v ├── ltcminer.v ├── salsa.v ├── sha-256-functions.v ├── sha256_transform.v └── test_ltcminer.v