├── .gitignore ├── DivMMC_2013_schematic.pdf ├── LICENSE ├── README.md ├── cpld_jedecs ├── divmmc-original.jed ├── divmmc-with-allram-and-mapram-reset-latest.jed ├── divmmc-with-allram-and-mapram-reset.jed └── divmmc-with-allram.jed ├── divmmc ├── _xmsgs │ ├── cpldfit.xmsgs │ ├── hprep6.xmsgs │ ├── taengine.xmsgs │ └── tsim.xmsgs ├── divmmc.gise ├── divmmc.vhd ├── divmmc.xise ├── divmmc_summary.html ├── iseconfig │ ├── divmmc.projectmgr │ └── divmmc.xreport └── pins.ucf └── docs ├── Divide_pgm_model.txt └── Divmmc_allram_manual.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/.gitignore -------------------------------------------------------------------------------- /DivMMC_2013_schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/DivMMC_2013_schematic.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/README.md -------------------------------------------------------------------------------- /cpld_jedecs/divmmc-original.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/cpld_jedecs/divmmc-original.jed -------------------------------------------------------------------------------- /cpld_jedecs/divmmc-with-allram-and-mapram-reset-latest.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/cpld_jedecs/divmmc-with-allram-and-mapram-reset-latest.jed -------------------------------------------------------------------------------- /cpld_jedecs/divmmc-with-allram-and-mapram-reset.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/cpld_jedecs/divmmc-with-allram-and-mapram-reset.jed -------------------------------------------------------------------------------- /cpld_jedecs/divmmc-with-allram.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/cpld_jedecs/divmmc-with-allram.jed -------------------------------------------------------------------------------- /divmmc/_xmsgs/cpldfit.xmsgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/_xmsgs/cpldfit.xmsgs -------------------------------------------------------------------------------- /divmmc/_xmsgs/hprep6.xmsgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/_xmsgs/hprep6.xmsgs -------------------------------------------------------------------------------- /divmmc/_xmsgs/taengine.xmsgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/_xmsgs/taengine.xmsgs -------------------------------------------------------------------------------- /divmmc/_xmsgs/tsim.xmsgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/_xmsgs/tsim.xmsgs -------------------------------------------------------------------------------- /divmmc/divmmc.gise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/divmmc.gise -------------------------------------------------------------------------------- /divmmc/divmmc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/divmmc.vhd -------------------------------------------------------------------------------- /divmmc/divmmc.xise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/divmmc.xise -------------------------------------------------------------------------------- /divmmc/divmmc_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/divmmc_summary.html -------------------------------------------------------------------------------- /divmmc/iseconfig/divmmc.projectmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/iseconfig/divmmc.projectmgr -------------------------------------------------------------------------------- /divmmc/iseconfig/divmmc.xreport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/iseconfig/divmmc.xreport -------------------------------------------------------------------------------- /divmmc/pins.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/divmmc/pins.ucf -------------------------------------------------------------------------------- /docs/Divide_pgm_model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/docs/Divide_pgm_model.txt -------------------------------------------------------------------------------- /docs/Divmmc_allram_manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mprato/DivMMC/HEAD/docs/Divmmc_allram_manual.txt --------------------------------------------------------------------------------