├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── auto-data ├── allclocks.txt ├── bkram.txt ├── buserr.txt ├── clkcheck.txt ├── clkcounter.txt ├── crossbus.txt ├── ddr3.txt ├── edid.txt ├── edidslvscope.txt ├── exconsole.txt ├── flash.txt ├── flashcfg.txt ├── global.txt ├── gpio.txt ├── gps.txt ├── hdmi.txt ├── i2ccpu.txt ├── i2cdma.txt ├── i2saudio.txt ├── icape.txt ├── legalgen.txt ├── mdio.txt ├── meganet.txt ├── nexysv.xdc ├── pic.txt ├── pwrcount.txt ├── rtccount.txt ├── rtcdate.txt ├── rtcgps.txt ├── sdio.txt ├── sdspi.txt ├── spio.txt ├── vadj33.txt ├── version.txt ├── wboledbw.txt ├── wbpmic.txt ├── wbscopc.txt ├── wbscope.txt ├── wbuarbiter.txt ├── wbuart.txt ├── wbubus.txt ├── zipcpu.txt └── zipmaster.txt ├── demo-out ├── board.h ├── board.ld ├── build.xdc ├── iscachable.v ├── main.v ├── main_tb.cpp ├── regdefs.cpp ├── regdefs.h ├── rtl.make.inc ├── testb.h └── toplevel.v ├── doc ├── 20200709-update.dia ├── 20200709-update.png ├── Makefile ├── bus.md ├── clocks.md ├── constraints.md ├── double.md ├── goals.txt ├── gpl-3.0.pdf ├── icd.txt ├── ioports.md ├── orconf17.pdf ├── single.md ├── slaves.md └── src │ └── gpl-3.0.tex └── sw ├── .gitignore ├── Makefile ├── ast.cpp ├── ast.h ├── autofpga.cpp ├── automdata.h ├── autopdata.h ├── bitlib.cpp ├── bitlib.h ├── bldboardld.cpp ├── bldboardld.h ├── bldcachable.cpp ├── bldcachable.h ├── bldregdefs.cpp ├── bldregdefs.h ├── bldrtlmake.cpp ├── bldrtlmake.h ├── bldsim.cpp ├── bldsim.h ├── bldtestb.cpp ├── bldtestb.h ├── bus ├── axi.cpp ├── axi.h ├── axil.cpp ├── axil.h ├── wb.cpp └── wb.h ├── businfo.cpp ├── businfo.h ├── clockinfo.cpp ├── clockinfo.h ├── expr.l ├── expr.ypp ├── gather.cpp ├── gather.h ├── genbus.cpp ├── genbus.h ├── globals.cpp ├── globals.h ├── ifdefs.cpp ├── ifdefs.h ├── keys.cpp ├── keys.h ├── kveval.cpp ├── kveval.h ├── legalnotice.cpp ├── legalnotice.h ├── mapdhash.cpp ├── mapdhash.h ├── mlist.cpp ├── mlist.h ├── msgs.cpp ├── msgs.h ├── parser.cpp ├── parser.h ├── plist.cpp ├── plist.h ├── predicates.cpp ├── predicates.h ├── subbus.cpp └── subbus.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/README.md -------------------------------------------------------------------------------- /auto-data/allclocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/allclocks.txt -------------------------------------------------------------------------------- /auto-data/bkram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/bkram.txt -------------------------------------------------------------------------------- /auto-data/buserr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/buserr.txt -------------------------------------------------------------------------------- /auto-data/clkcheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/clkcheck.txt -------------------------------------------------------------------------------- /auto-data/clkcounter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/clkcounter.txt -------------------------------------------------------------------------------- /auto-data/crossbus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/crossbus.txt -------------------------------------------------------------------------------- /auto-data/ddr3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/ddr3.txt -------------------------------------------------------------------------------- /auto-data/edid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/edid.txt -------------------------------------------------------------------------------- /auto-data/edidslvscope.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/edidslvscope.txt -------------------------------------------------------------------------------- /auto-data/exconsole.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/exconsole.txt -------------------------------------------------------------------------------- /auto-data/flash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/flash.txt -------------------------------------------------------------------------------- /auto-data/flashcfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/flashcfg.txt -------------------------------------------------------------------------------- /auto-data/global.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/global.txt -------------------------------------------------------------------------------- /auto-data/gpio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/gpio.txt -------------------------------------------------------------------------------- /auto-data/gps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/gps.txt -------------------------------------------------------------------------------- /auto-data/hdmi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/hdmi.txt -------------------------------------------------------------------------------- /auto-data/i2ccpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/i2ccpu.txt -------------------------------------------------------------------------------- /auto-data/i2cdma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/i2cdma.txt -------------------------------------------------------------------------------- /auto-data/i2saudio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/i2saudio.txt -------------------------------------------------------------------------------- /auto-data/icape.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/icape.txt -------------------------------------------------------------------------------- /auto-data/legalgen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/legalgen.txt -------------------------------------------------------------------------------- /auto-data/mdio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/mdio.txt -------------------------------------------------------------------------------- /auto-data/meganet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/meganet.txt -------------------------------------------------------------------------------- /auto-data/nexysv.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/nexysv.xdc -------------------------------------------------------------------------------- /auto-data/pic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/pic.txt -------------------------------------------------------------------------------- /auto-data/pwrcount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/pwrcount.txt -------------------------------------------------------------------------------- /auto-data/rtccount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/rtccount.txt -------------------------------------------------------------------------------- /auto-data/rtcdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/rtcdate.txt -------------------------------------------------------------------------------- /auto-data/rtcgps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/rtcgps.txt -------------------------------------------------------------------------------- /auto-data/sdio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/sdio.txt -------------------------------------------------------------------------------- /auto-data/sdspi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/sdspi.txt -------------------------------------------------------------------------------- /auto-data/spio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/spio.txt -------------------------------------------------------------------------------- /auto-data/vadj33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/vadj33.txt -------------------------------------------------------------------------------- /auto-data/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/version.txt -------------------------------------------------------------------------------- /auto-data/wboledbw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/wboledbw.txt -------------------------------------------------------------------------------- /auto-data/wbpmic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/wbpmic.txt -------------------------------------------------------------------------------- /auto-data/wbscopc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/wbscopc.txt -------------------------------------------------------------------------------- /auto-data/wbscope.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/wbscope.txt -------------------------------------------------------------------------------- /auto-data/wbuarbiter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/wbuarbiter.txt -------------------------------------------------------------------------------- /auto-data/wbuart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/wbuart.txt -------------------------------------------------------------------------------- /auto-data/wbubus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/wbubus.txt -------------------------------------------------------------------------------- /auto-data/zipcpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/zipcpu.txt -------------------------------------------------------------------------------- /auto-data/zipmaster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/auto-data/zipmaster.txt -------------------------------------------------------------------------------- /demo-out/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/demo-out/board.h -------------------------------------------------------------------------------- /demo-out/board.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/demo-out/board.ld -------------------------------------------------------------------------------- /demo-out/build.xdc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo-out/iscachable.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/demo-out/iscachable.v -------------------------------------------------------------------------------- /demo-out/main.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/demo-out/main.v -------------------------------------------------------------------------------- /demo-out/main_tb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/demo-out/main_tb.cpp -------------------------------------------------------------------------------- /demo-out/regdefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/demo-out/regdefs.cpp -------------------------------------------------------------------------------- /demo-out/regdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/demo-out/regdefs.h -------------------------------------------------------------------------------- /demo-out/rtl.make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/demo-out/rtl.make.inc -------------------------------------------------------------------------------- /demo-out/testb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/demo-out/testb.h -------------------------------------------------------------------------------- /demo-out/toplevel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/demo-out/toplevel.v -------------------------------------------------------------------------------- /doc/20200709-update.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/20200709-update.dia -------------------------------------------------------------------------------- /doc/20200709-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/20200709-update.png -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/bus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/bus.md -------------------------------------------------------------------------------- /doc/clocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/clocks.md -------------------------------------------------------------------------------- /doc/constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/constraints.md -------------------------------------------------------------------------------- /doc/double.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/double.md -------------------------------------------------------------------------------- /doc/goals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/goals.txt -------------------------------------------------------------------------------- /doc/gpl-3.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/gpl-3.0.pdf -------------------------------------------------------------------------------- /doc/icd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/icd.txt -------------------------------------------------------------------------------- /doc/ioports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/ioports.md -------------------------------------------------------------------------------- /doc/orconf17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/orconf17.pdf -------------------------------------------------------------------------------- /doc/single.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/single.md -------------------------------------------------------------------------------- /doc/slaves.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/slaves.md -------------------------------------------------------------------------------- /doc/src/gpl-3.0.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/doc/src/gpl-3.0.tex -------------------------------------------------------------------------------- /sw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/.gitignore -------------------------------------------------------------------------------- /sw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/Makefile -------------------------------------------------------------------------------- /sw/ast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/ast.cpp -------------------------------------------------------------------------------- /sw/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/ast.h -------------------------------------------------------------------------------- /sw/autofpga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/autofpga.cpp -------------------------------------------------------------------------------- /sw/automdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/automdata.h -------------------------------------------------------------------------------- /sw/autopdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/autopdata.h -------------------------------------------------------------------------------- /sw/bitlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bitlib.cpp -------------------------------------------------------------------------------- /sw/bitlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bitlib.h -------------------------------------------------------------------------------- /sw/bldboardld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldboardld.cpp -------------------------------------------------------------------------------- /sw/bldboardld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldboardld.h -------------------------------------------------------------------------------- /sw/bldcachable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldcachable.cpp -------------------------------------------------------------------------------- /sw/bldcachable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldcachable.h -------------------------------------------------------------------------------- /sw/bldregdefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldregdefs.cpp -------------------------------------------------------------------------------- /sw/bldregdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldregdefs.h -------------------------------------------------------------------------------- /sw/bldrtlmake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldrtlmake.cpp -------------------------------------------------------------------------------- /sw/bldrtlmake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldrtlmake.h -------------------------------------------------------------------------------- /sw/bldsim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldsim.cpp -------------------------------------------------------------------------------- /sw/bldsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldsim.h -------------------------------------------------------------------------------- /sw/bldtestb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldtestb.cpp -------------------------------------------------------------------------------- /sw/bldtestb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bldtestb.h -------------------------------------------------------------------------------- /sw/bus/axi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bus/axi.cpp -------------------------------------------------------------------------------- /sw/bus/axi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bus/axi.h -------------------------------------------------------------------------------- /sw/bus/axil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bus/axil.cpp -------------------------------------------------------------------------------- /sw/bus/axil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bus/axil.h -------------------------------------------------------------------------------- /sw/bus/wb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bus/wb.cpp -------------------------------------------------------------------------------- /sw/bus/wb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/bus/wb.h -------------------------------------------------------------------------------- /sw/businfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/businfo.cpp -------------------------------------------------------------------------------- /sw/businfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/businfo.h -------------------------------------------------------------------------------- /sw/clockinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/clockinfo.cpp -------------------------------------------------------------------------------- /sw/clockinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/clockinfo.h -------------------------------------------------------------------------------- /sw/expr.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/expr.l -------------------------------------------------------------------------------- /sw/expr.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/expr.ypp -------------------------------------------------------------------------------- /sw/gather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/gather.cpp -------------------------------------------------------------------------------- /sw/gather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/gather.h -------------------------------------------------------------------------------- /sw/genbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/genbus.cpp -------------------------------------------------------------------------------- /sw/genbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/genbus.h -------------------------------------------------------------------------------- /sw/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/globals.cpp -------------------------------------------------------------------------------- /sw/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/globals.h -------------------------------------------------------------------------------- /sw/ifdefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/ifdefs.cpp -------------------------------------------------------------------------------- /sw/ifdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/ifdefs.h -------------------------------------------------------------------------------- /sw/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/keys.cpp -------------------------------------------------------------------------------- /sw/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/keys.h -------------------------------------------------------------------------------- /sw/kveval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/kveval.cpp -------------------------------------------------------------------------------- /sw/kveval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/kveval.h -------------------------------------------------------------------------------- /sw/legalnotice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/legalnotice.cpp -------------------------------------------------------------------------------- /sw/legalnotice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/legalnotice.h -------------------------------------------------------------------------------- /sw/mapdhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/mapdhash.cpp -------------------------------------------------------------------------------- /sw/mapdhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/mapdhash.h -------------------------------------------------------------------------------- /sw/mlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/mlist.cpp -------------------------------------------------------------------------------- /sw/mlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/mlist.h -------------------------------------------------------------------------------- /sw/msgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/msgs.cpp -------------------------------------------------------------------------------- /sw/msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/msgs.h -------------------------------------------------------------------------------- /sw/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/parser.cpp -------------------------------------------------------------------------------- /sw/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/parser.h -------------------------------------------------------------------------------- /sw/plist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/plist.cpp -------------------------------------------------------------------------------- /sw/plist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/plist.h -------------------------------------------------------------------------------- /sw/predicates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/predicates.cpp -------------------------------------------------------------------------------- /sw/predicates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/predicates.h -------------------------------------------------------------------------------- /sw/subbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/subbus.cpp -------------------------------------------------------------------------------- /sw/subbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZipCPU/autofpga/HEAD/sw/subbus.h --------------------------------------------------------------------------------