├── README.md ├── examples ├── blinky │ ├── .gitignore │ ├── Makefile │ ├── example.v │ └── icoboard.pcf ├── icezero │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── generate.py │ ├── icezero.pcf │ ├── icezero.v │ ├── icezprog.c │ └── testbench.v └── pinout │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── generate.py │ ├── icoboard.pcf │ └── icopins.v ├── icoprog ├── .gitignore ├── Makefile ├── README ├── example.pcf ├── example.v └── icoprog.cc ├── icosoc ├── .gitignore ├── README ├── common │ ├── firmware.S │ ├── firmware.c │ ├── firmware.lds │ ├── flashbin.py │ ├── icosoc_crossclkfifo.v │ ├── icosoc_debugger.v │ ├── icosoc_flashmem.v │ ├── icosoc_raspif.v │ ├── makehex.py │ ├── picorv32.v │ ├── riscv_flash.ld │ ├── riscv_orig.ld │ ├── sim_spiflash.v │ ├── sim_sram.v │ └── syscalls.c ├── examples │ ├── hanoi │ │ ├── Makefile │ │ ├── icosoc.cfg │ │ └── main.c │ ├── hello │ │ ├── Makefile │ │ ├── icosoc.cfg │ │ └── main.c │ ├── iconoid │ │ ├── Makefile │ │ ├── README │ │ ├── icosoc.cfg │ │ └── main.c │ ├── ioshim │ │ ├── Makefile │ │ ├── README │ │ ├── blink.ios │ │ ├── icosoc.cfg │ │ └── main.c │ ├── ledpanel │ │ ├── Makefile │ │ ├── icosoc.cfg │ │ ├── main.c │ │ ├── sprite0.ppm │ │ ├── sprite1.ppm │ │ ├── sprite2.ppm │ │ ├── sprites.h │ │ ├── sprites.py │ │ └── sprites.txt │ ├── memtest │ │ ├── Makefile │ │ ├── firmware.c │ │ ├── icosoc.cfg │ │ └── memtest.sh │ ├── scales │ │ ├── Makefile │ │ ├── icosoc.cfg │ │ └── main.c │ ├── sdcard │ │ ├── Makefile │ │ ├── icosoc.cfg │ │ └── main.c │ └── timer │ │ ├── Makefile │ │ ├── icosoc.cfg │ │ └── main.c ├── icosoc.py ├── mod_extirq │ ├── mod_extirq.py │ └── mod_extirq.v ├── mod_gpio │ ├── mod_gpio.py │ └── mod_gpio.v ├── mod_ledpanel │ ├── mod_ledpanel.py │ └── mod_ledpanel.v ├── mod_pwm │ ├── mod_pwm.py │ └── mod_pwm.v ├── mod_rs232 │ ├── mod_rs232.py │ └── mod_rs232.v └── mod_spi │ ├── mod_spi.py │ ├── mod_spi.v │ ├── testbench.sh │ └── testbench.v ├── makeimg ├── README ├── build-icestorm.sh ├── build-icotools.sh ├── build-riscv.sh └── build.sh └── mxoprog ├── .gitignore ├── Makefile ├── README ├── SCico_impl1.jed ├── SCico_impl1.svf ├── libxsvf.h ├── memtest.bin ├── mxoprog.c ├── play.c ├── scan.c ├── setup.sh ├── statename.c ├── svf.c └── tap.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/README.md -------------------------------------------------------------------------------- /examples/blinky/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/blinky/.gitignore -------------------------------------------------------------------------------- /examples/blinky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/blinky/Makefile -------------------------------------------------------------------------------- /examples/blinky/example.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/blinky/example.v -------------------------------------------------------------------------------- /examples/blinky/icoboard.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/blinky/icoboard.pcf -------------------------------------------------------------------------------- /examples/icezero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/icezero/.gitignore -------------------------------------------------------------------------------- /examples/icezero/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/icezero/Makefile -------------------------------------------------------------------------------- /examples/icezero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/icezero/README.md -------------------------------------------------------------------------------- /examples/icezero/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/icezero/generate.py -------------------------------------------------------------------------------- /examples/icezero/icezero.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/icezero/icezero.pcf -------------------------------------------------------------------------------- /examples/icezero/icezero.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/icezero/icezero.v -------------------------------------------------------------------------------- /examples/icezero/icezprog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/icezero/icezprog.c -------------------------------------------------------------------------------- /examples/icezero/testbench.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/icezero/testbench.v -------------------------------------------------------------------------------- /examples/pinout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/pinout/.gitignore -------------------------------------------------------------------------------- /examples/pinout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/pinout/Makefile -------------------------------------------------------------------------------- /examples/pinout/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/pinout/README -------------------------------------------------------------------------------- /examples/pinout/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/pinout/generate.py -------------------------------------------------------------------------------- /examples/pinout/icoboard.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/pinout/icoboard.pcf -------------------------------------------------------------------------------- /examples/pinout/icopins.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/examples/pinout/icopins.v -------------------------------------------------------------------------------- /icoprog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icoprog/.gitignore -------------------------------------------------------------------------------- /icoprog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icoprog/Makefile -------------------------------------------------------------------------------- /icoprog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icoprog/README -------------------------------------------------------------------------------- /icoprog/example.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icoprog/example.pcf -------------------------------------------------------------------------------- /icoprog/example.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icoprog/example.v -------------------------------------------------------------------------------- /icoprog/icoprog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icoprog/icoprog.cc -------------------------------------------------------------------------------- /icosoc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/.gitignore -------------------------------------------------------------------------------- /icosoc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/README -------------------------------------------------------------------------------- /icosoc/common/firmware.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/firmware.S -------------------------------------------------------------------------------- /icosoc/common/firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/firmware.c -------------------------------------------------------------------------------- /icosoc/common/firmware.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/firmware.lds -------------------------------------------------------------------------------- /icosoc/common/flashbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/flashbin.py -------------------------------------------------------------------------------- /icosoc/common/icosoc_crossclkfifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/icosoc_crossclkfifo.v -------------------------------------------------------------------------------- /icosoc/common/icosoc_debugger.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/icosoc_debugger.v -------------------------------------------------------------------------------- /icosoc/common/icosoc_flashmem.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/icosoc_flashmem.v -------------------------------------------------------------------------------- /icosoc/common/icosoc_raspif.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/icosoc_raspif.v -------------------------------------------------------------------------------- /icosoc/common/makehex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/makehex.py -------------------------------------------------------------------------------- /icosoc/common/picorv32.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/picorv32.v -------------------------------------------------------------------------------- /icosoc/common/riscv_flash.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/riscv_flash.ld -------------------------------------------------------------------------------- /icosoc/common/riscv_orig.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/riscv_orig.ld -------------------------------------------------------------------------------- /icosoc/common/sim_spiflash.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/sim_spiflash.v -------------------------------------------------------------------------------- /icosoc/common/sim_sram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/sim_sram.v -------------------------------------------------------------------------------- /icosoc/common/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/common/syscalls.c -------------------------------------------------------------------------------- /icosoc/examples/hanoi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/hanoi/Makefile -------------------------------------------------------------------------------- /icosoc/examples/hanoi/icosoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/hanoi/icosoc.cfg -------------------------------------------------------------------------------- /icosoc/examples/hanoi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/hanoi/main.c -------------------------------------------------------------------------------- /icosoc/examples/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/hello/Makefile -------------------------------------------------------------------------------- /icosoc/examples/hello/icosoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/hello/icosoc.cfg -------------------------------------------------------------------------------- /icosoc/examples/hello/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/hello/main.c -------------------------------------------------------------------------------- /icosoc/examples/iconoid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/iconoid/Makefile -------------------------------------------------------------------------------- /icosoc/examples/iconoid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/iconoid/README -------------------------------------------------------------------------------- /icosoc/examples/iconoid/icosoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/iconoid/icosoc.cfg -------------------------------------------------------------------------------- /icosoc/examples/iconoid/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/iconoid/main.c -------------------------------------------------------------------------------- /icosoc/examples/ioshim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ioshim/Makefile -------------------------------------------------------------------------------- /icosoc/examples/ioshim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ioshim/README -------------------------------------------------------------------------------- /icosoc/examples/ioshim/blink.ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ioshim/blink.ios -------------------------------------------------------------------------------- /icosoc/examples/ioshim/icosoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ioshim/icosoc.cfg -------------------------------------------------------------------------------- /icosoc/examples/ioshim/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ioshim/main.c -------------------------------------------------------------------------------- /icosoc/examples/ledpanel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ledpanel/Makefile -------------------------------------------------------------------------------- /icosoc/examples/ledpanel/icosoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ledpanel/icosoc.cfg -------------------------------------------------------------------------------- /icosoc/examples/ledpanel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ledpanel/main.c -------------------------------------------------------------------------------- /icosoc/examples/ledpanel/sprite0.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ledpanel/sprite0.ppm -------------------------------------------------------------------------------- /icosoc/examples/ledpanel/sprite1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ledpanel/sprite1.ppm -------------------------------------------------------------------------------- /icosoc/examples/ledpanel/sprite2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ledpanel/sprite2.ppm -------------------------------------------------------------------------------- /icosoc/examples/ledpanel/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ledpanel/sprites.h -------------------------------------------------------------------------------- /icosoc/examples/ledpanel/sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ledpanel/sprites.py -------------------------------------------------------------------------------- /icosoc/examples/ledpanel/sprites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/ledpanel/sprites.txt -------------------------------------------------------------------------------- /icosoc/examples/memtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/memtest/Makefile -------------------------------------------------------------------------------- /icosoc/examples/memtest/firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/memtest/firmware.c -------------------------------------------------------------------------------- /icosoc/examples/memtest/icosoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/memtest/icosoc.cfg -------------------------------------------------------------------------------- /icosoc/examples/memtest/memtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/memtest/memtest.sh -------------------------------------------------------------------------------- /icosoc/examples/scales/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/scales/Makefile -------------------------------------------------------------------------------- /icosoc/examples/scales/icosoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/scales/icosoc.cfg -------------------------------------------------------------------------------- /icosoc/examples/scales/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/scales/main.c -------------------------------------------------------------------------------- /icosoc/examples/sdcard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/sdcard/Makefile -------------------------------------------------------------------------------- /icosoc/examples/sdcard/icosoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/sdcard/icosoc.cfg -------------------------------------------------------------------------------- /icosoc/examples/sdcard/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/sdcard/main.c -------------------------------------------------------------------------------- /icosoc/examples/timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/timer/Makefile -------------------------------------------------------------------------------- /icosoc/examples/timer/icosoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/timer/icosoc.cfg -------------------------------------------------------------------------------- /icosoc/examples/timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/examples/timer/main.c -------------------------------------------------------------------------------- /icosoc/icosoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/icosoc.py -------------------------------------------------------------------------------- /icosoc/mod_extirq/mod_extirq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_extirq/mod_extirq.py -------------------------------------------------------------------------------- /icosoc/mod_extirq/mod_extirq.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_extirq/mod_extirq.v -------------------------------------------------------------------------------- /icosoc/mod_gpio/mod_gpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_gpio/mod_gpio.py -------------------------------------------------------------------------------- /icosoc/mod_gpio/mod_gpio.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_gpio/mod_gpio.v -------------------------------------------------------------------------------- /icosoc/mod_ledpanel/mod_ledpanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_ledpanel/mod_ledpanel.py -------------------------------------------------------------------------------- /icosoc/mod_ledpanel/mod_ledpanel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_ledpanel/mod_ledpanel.v -------------------------------------------------------------------------------- /icosoc/mod_pwm/mod_pwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_pwm/mod_pwm.py -------------------------------------------------------------------------------- /icosoc/mod_pwm/mod_pwm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_pwm/mod_pwm.v -------------------------------------------------------------------------------- /icosoc/mod_rs232/mod_rs232.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_rs232/mod_rs232.py -------------------------------------------------------------------------------- /icosoc/mod_rs232/mod_rs232.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_rs232/mod_rs232.v -------------------------------------------------------------------------------- /icosoc/mod_spi/mod_spi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_spi/mod_spi.py -------------------------------------------------------------------------------- /icosoc/mod_spi/mod_spi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_spi/mod_spi.v -------------------------------------------------------------------------------- /icosoc/mod_spi/testbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_spi/testbench.sh -------------------------------------------------------------------------------- /icosoc/mod_spi/testbench.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/icosoc/mod_spi/testbench.v -------------------------------------------------------------------------------- /makeimg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/makeimg/README -------------------------------------------------------------------------------- /makeimg/build-icestorm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/makeimg/build-icestorm.sh -------------------------------------------------------------------------------- /makeimg/build-icotools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/makeimg/build-icotools.sh -------------------------------------------------------------------------------- /makeimg/build-riscv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/makeimg/build-riscv.sh -------------------------------------------------------------------------------- /makeimg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/makeimg/build.sh -------------------------------------------------------------------------------- /mxoprog/.gitignore: -------------------------------------------------------------------------------- 1 | mxoprog 2 | -------------------------------------------------------------------------------- /mxoprog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/Makefile -------------------------------------------------------------------------------- /mxoprog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/README -------------------------------------------------------------------------------- /mxoprog/SCico_impl1.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/SCico_impl1.jed -------------------------------------------------------------------------------- /mxoprog/SCico_impl1.svf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/SCico_impl1.svf -------------------------------------------------------------------------------- /mxoprog/libxsvf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/libxsvf.h -------------------------------------------------------------------------------- /mxoprog/memtest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/memtest.bin -------------------------------------------------------------------------------- /mxoprog/mxoprog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/mxoprog.c -------------------------------------------------------------------------------- /mxoprog/play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/play.c -------------------------------------------------------------------------------- /mxoprog/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/scan.c -------------------------------------------------------------------------------- /mxoprog/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/setup.sh -------------------------------------------------------------------------------- /mxoprog/statename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/statename.c -------------------------------------------------------------------------------- /mxoprog/svf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/svf.c -------------------------------------------------------------------------------- /mxoprog/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cliffordwolf/icotools/HEAD/mxoprog/tap.c --------------------------------------------------------------------------------